public Beverage(string name, BevType bevtype, float price) { Name = name; Bevtype = bevtype; Price = price; Available = true; }
public Water(string name, BevType bevtype, float price, bool hasCalories) : base(name, bevtype, price) { HasCalories = hasCalories; }
public EnergyDrink(string name, BevType bevtype, float price, bool isDiet) : base(name, bevtype, price) { IsDiet = isDiet; }
public Juice(string name, BevType bevtype, float price, string fruit) : base(name, bevtype, price) { Fruit = fruit; }
public Soda(string name, BevType bevtype, float price, bool isDiet) : base(name, bevtype, price) { IsDiet = isDiet; }