Exemplo n.º 1
0
 public PriceRatesBuilder With(DogSize size, bool isAggressive, byte maxPackSize)
 {
     _priceRates.Add(new PriceRate {
         DogSize = size, MaxPackSize = maxPackSize, IsAggressive = isAggressive
     });
     return(this);
 }
Exemplo n.º 2
0
Arquivo: Dog.cs Projeto: Lalica/WoofMe
 public void AddSize(DogSize size)
 {
     Size = size;
 }