Exemplo n.º 1
0
 public OrderLine(int ID, int Amount, decimal TotalPrice, SuperAlchohol Drink)
 {
     this.ID         = ID;
     this.Amount     = Amount;
     this.TotalPrice = TotalPrice;
     this.Drink      = Drink;
 }
Exemplo n.º 2
0
 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;
 }