Example #1
0
 public VendasController(VendasService vendasService, ProdutoService produtoService, VendedorService vendedorService, ClienteService clienteService, FormaPagtoService formaPagtoService)
 {
     _vendasService     = vendasService;
     _produtoService    = produtoService;
     _formaPagtoService = formaPagtoService;
     _vendedorService   = vendedorService;
     _clienteService    = clienteService;
 }
Example #2
0
 public FormaPagtosController(FormaPagtoService formaPagtoService)
 {
     _formaPagtoService = formaPagtoService;
 }