Exemplo n.º 1
0
 public VendasController(SalesService SalesService, SellerService Seller, DepartamentoSevice departamentoService)
 {
     _SalesService        = SalesService;
     _Seller              = Seller;
     _departamentoService = departamentoService;
 }
Exemplo n.º 2
0
 public VendedorController(SellerService Seller, DepartamentoSevice departamentoService)
 {
     _Seller = Seller;
     _departamentoService = departamentoService;
 }