Ejemplo n.º 1
0
 public Medium_Alcholol(Bottle bottle, TType mtype, string recipe, TCooking_Method cooking_method, TColor color, TShugar shugar, double degree, int year, string name, double price, int count, string country) : base(degree, year, name, price, count, country)
 {
     this.Bottle         = bottle;
     this.Cooking_Method = cooking_method;
     this.Shugar         = shugar;
     this.Recipe         = recipe;
     this.MType          = mtype;
     this.Color          = color;
     this.Category       = TCategories.Medium_Alcholol;
 }
Ejemplo n.º 2
0
 public Low_Alcholol(Bottle bottle, TFlavorin_additives flavorin_additives, TCooking_Method tcooking_method, string ingridients, string recipe, bool aroma, bool fruit, double degree, int year, string name, double price, int count, string country) : base(degree, year, name, price, count, country)
 {
     this.Flavorin_Additives = flavorin_additives;
     this.Cooking_Method     = tcooking_method;
     this.Ingridients        = ingridients;
     this.Recipe             = recipe;
     this.Aroma    = aroma;
     this.Fruit    = fruit;
     this.Category = TCategories.Low_Alcholol;
     this.Bottle   = bottle;
 }