コード例 #1
0
ファイル: Container.cs プロジェクト: BluRRayS/LP-Algoritmiek
 public Container(double containerWeight, double maxContainerWeight, double weight, Enums.FreightType type)
 {
     _emptyWeight = containerWeight;
     _maxWeight   = maxContainerWeight;
     this.Weight  = weight;
     FreightType  = type;
 }
コード例 #2
0
ファイル: Container.cs プロジェクト: BluRRayS/LP-Algoritmiek
 public Container(double weight, Enums.FreightType type)
 {
     _emptyWeight = 0.4;
     _maxWeight   = 120;
     this.Weight  = weight;
     FreightType  = type;
 }