public OrderLine(int ID, int Amount, decimal TotalPrice, SuperAlchohol Drink) { this.ID = ID; this.Amount = Amount; this.TotalPrice = TotalPrice; this.Drink = Drink; }
public Storage(int ID, int Amount, int MaxAmount, int MinAmount, SuperAlchohol Drink, Customer Customer) { this.ID = ID; this.Amount = Amount; this.MaxAmount = MaxAmount; this.MinAmount = MinAmount; this.Drink = Drink; this.Customer = Customer; }