Exemple #1
0
 public VendasController(SalesService SalesService, SellerService Seller, DepartamentoSevice departamentoService)
 {
     _SalesService        = SalesService;
     _Seller              = Seller;
     _departamentoService = departamentoService;
 }
 public VendedorController(SellerService Seller, DepartamentoSevice departamentoService)
 {
     _Seller = Seller;
     _departamentoService = departamentoService;
 }