Example #1
0
 public Venda(int id, DateTime dataVenda, double valorTotal, StatusVenda status, Vendedor vendedor)
 {
     Id = id;
     DataVenda = dataVenda;
     ValorTotal = valorTotal;
     Status = status;
     Vendedor = vendedor;
 }
Example #2
0
 public void AdicionarVendedor(Vendedor objVendedor)
 {
     Vendedores.Add(objVendedor);
 }