Exemplo n.º 1
0
 public Salads(TEddition eddition, bool fruitSalad, bool vegetableSalad, TServing_size serving_size, string name, int count, double price, double calorie_content) : base(serving_size, name, count, price, calorie_content)
 {
     this.Eddition       = eddition;
     this.FruitSalad     = fruitSalad;
     this.VegetableSalad = vegetableSalad;
     this.Category       = TCategorys.Salads;
 }
Exemplo n.º 2
0
 public Soups(bool withMeat, bool coldSoup, TliquidType liquidType, TServing_size serving_size, string name, int count, double price, double calorie_content) : base(serving_size, name, count, price, calorie_content)
 {
     this.WithMeat     = withMeat;
     this.ColdSoup     = coldSoup;
     this.LiquidType   = liquidType;
     this.Serving_size = serving_size;
     this.Category     = TCategorys.Soups;
 }
Exemplo n.º 3
0
 public ComplexDishes(Meat meat, Soups soups, TServing_size serving_size, string name, int count, double price, double calorie_content) : base(serving_size, name, count, price, calorie_content)
 {
     this.Meat     = meat;
     this.Soups    = soups;
     this.Category = TCategorys.ComplexDishes;
 }
Exemplo n.º 4
0
 public Meat(TMeatType meatType, TServing_size serving_size, string name, int count, double price, double calorie_content) : base(serving_size, name, count, price, calorie_content)
 {
     this.MeatType     = meatType;
     this.Serving_size = serving_size;
     this.Category     = TCategorys.Meat;
 }
Exemplo n.º 5
0
 public HotDishes(TServing_size serving_size, string name, int count, double price, double calorie_content) : base(name, count, price, calorie_content)
 {
     this.Serving_size = serving_size;
 }
Exemplo n.º 6
0
 public Snacks(TFromWhat fromWhat, TServing_size serving_size, string name, int count, double price, double calorie_content) : base(serving_size, name, count, price, calorie_content)
 {
     this.FromWhat = fromWhat;
     this.Category = TCategorys.Snacks;
 }