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