Пример #1
0
 public FreightItem(Freight freight, Expedition expedition, decimal rate, int estimatedTimeDepartureMin, int estimatedTimeDepartureMax)
     : this(freight)
 {
     this.Expedition = expedition;
     this.Rate       = rate;
     this.EstimatedTimeDepartureMin = estimatedTimeDepartureMin;
     this.EstimatedTimeDepartureMax = estimatedTimeDepartureMax;
 }
Пример #2
0
 private FreightItem(Freight freight)
 {
     this.Freight = freight;
 }