示例#1
0
 public void pickSalad(Salads s)
 {
     MySalad = s;
     //Price = Price + s.getPrice;
     updateAddonReciept(s.getSalad + " " + Id + " $" + Math.Round(s.getPrice, 2));
     TotalOrder();
 }
示例#2
0
 public Salad(Salads sal)
 {
     this.Id      = Type;
     this.MySalad = sal;
 }