Esempio n. 1
0
 public Container(double containerWeight, double maxContainerWeight, double weight, Enums.FreightType type)
 {
     _emptyWeight = containerWeight;
     _maxWeight   = maxContainerWeight;
     this.Weight  = weight;
     FreightType  = type;
 }
Esempio n. 2
0
 public Container(double weight, Enums.FreightType type)
 {
     _emptyWeight = 0.4;
     _maxWeight   = 120;
     this.Weight  = weight;
     FreightType  = type;
 }