| | |
| | | set { _id = value; } |
| | | } |
| | | |
| | | private string _orderCode; |
| | | |
| | | public string orderCode |
| | | { |
| | | get => _orderCode; |
| | | set => RaiseAndSetIfChanged(ref _orderCode, value); |
| | | } |
| | | |
| | | |
| | | private string _materialCode; |
| | | |
| | | public string materialCode |
| | |
| | | set => RaiseAndSetIfChanged(ref _count, value); |
| | | } |
| | | |
| | | private string _fileName; |
| | | public string fileName |
| | | { |
| | | get => _fileName; |
| | | set => RaiseAndSetIfChanged(ref _fileName, value); |
| | | } |
| | | |
| | | private double? _volume; |
| | | public double? volume |
| | | { |
| | | get => _volume; |
| | | set => RaiseAndSetIfChanged(ref _volume, value); |
| | | } |
| | | |
| | | private double? _surfaceArea; |
| | | public double? surfaceArea |
| | | { |
| | | get => _surfaceArea; |
| | | set => RaiseAndSetIfChanged(ref _surfaceArea, value); |
| | | } |
| | | |
| | | private double? _mass; |
| | | public double? mass |
| | | { |
| | | get => _mass; |
| | | set => RaiseAndSetIfChanged(ref _mass, value); |
| | | } |
| | | } |
| | | } |