Example #1
0
 public CaixaController(ICaixaService caixaService, IClienteAppService clienteService, IVendasAppService vendasService, IPonstosAppService pontosService)
 {
     _caixaService   = caixaService;
     _clienteService = clienteService;
     _vendasService  = vendasService;
     _pontosService  = pontosService;
 }
Example #2
0
 public VendasAppService(IPonstosAppService pontosService)
 {
     _pontosService = pontosService;
 }