Example #1
0
 public High_Alcholol(Bottle bottle, TFlavorin_additives flavorin_additives, TRaw_Materials raw_materials, TType btype, double degree, int year, string name, double price, int count, string country) : base(degree, year, name, price, count, country)
 {
     this.Bottle             = bottle;
     this.Flavorin_additives = flavorin_additives;
     this.Raw_Materials      = raw_materials;
     this.HAType             = btype;
     this.Category           = TCategories.High_Alcholol;
 }
Example #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;
 }