Exemplo n.º 1
0
 public ParcelValidation(IParcelTypeDictionary parcelTypeDictionary, IParcelConfiguration parcelConfiguration)
 {
     this.parcelTypeDictionary = parcelTypeDictionary.GetAll();
     MaxLength  = this.parcelTypeDictionary[ParcelSize.Large].MaxLength;
     MaxHeight  = this.parcelTypeDictionary[ParcelSize.Large].MaxHeight;
     MaxBreadth = this.parcelTypeDictionary[ParcelSize.Large].MaxBreadth;
     MaxWeight  = parcelConfiguration.GetMaxWeight();
 }
Exemplo n.º 2
0
 public ParcelCalculator(IParcelTypeDictionary parcelTypeDictionary)
 {
     this.parcelTypeDictionary = parcelTypeDictionary.GetAll();
 }