Esempio n. 1
0
 public Order(long?id, string uuid, Restaurant.Restaurant restaurant, List <OrderItem> items, decimal total)
 {
     this.Id         = id;
     this.Uuid       = uuid;
     this.Restaurant = restaurant;
     this.Items      = items;
     this.Total      = total;
 }
Esempio n. 2
0
 public Order(string uuid, Restaurant.Restaurant restaurant, List <OrderItem> items, decimal total) :
     this(null, uuid, restaurant, items, total)
 {
 }