Example #1
0
 public Pedido(ulong id, Cliente cliente, Hamburguer hamburguer, Shake shake, DateTime dataDoPedido, double precoTotal, ulong status)
 {
     this.Id           = id;
     this.Cliente      = cliente;
     this.Hamburguer   = hamburguer;
     this.Shake        = shake;
     this.DataDoPedido = dataDoPedido;
     this.PrecoTotal   = precoTotal;
     this.Status       = status;
 }
Example #2
0
 internal static void Add(Hamburguer h)
 {
     throw new NotImplementedException();
 }