示例#1
0
 public RegistroVenda(int id, DateTime data, double valor, VendaStatus status, Vendedor vendedor)
 {
     Id       = id;
     Data     = data;
     Valor    = valor;
     Status   = status;
     Vendedor = vendedor;
 }
示例#2
0
 public void AddVendedor(Vendedor sr)
 {
     Vendedores.Add(sr);
 }