Example #1
0
 public RecipeHop(IHop hop, Weight weight, int boilTime, Recipe recipe)
     : base(hop.Name)
 {
     //this.hop = hop;
     this.Name = hop.Name;
     this.Description = hop.Description;
     this.AddOilCharacteristics(hop.GetCharacteristics());
     this.Weight = weight;
     this.BoilTime = boilTime;
     this.Recipe  = recipe;
 }