Beispiel #1
0
 public CaixaController(ICaixaService caixaService, IClienteAppService clienteService, IVendasAppService vendasService, IPonstosAppService pontosService)
 {
     _caixaService   = caixaService;
     _clienteService = clienteService;
     _vendasService  = vendasService;
     _pontosService  = pontosService;
 }
Beispiel #2
0
 public ContaService(IContaRepository contaRepository,
                     ICaixaService caixaService,
                     IEmpresaService empresaService)
 {
     _contaRepository = contaRepository;
     _caixaService    = caixaService;
     _empresaService  = empresaService;
 }
 public TransferenciaService(ITransferenciaRepository transferenciaRepository,
                             ICaixaService caixaService,
                             IEmpresaService empresaService)
 {
     _transferenciaRepository = transferenciaRepository;
     _caixaService            = caixaService;
     _empresaService          = empresaService;
 }
 public CaixaController(ICaixaService caixaService)
 {
     _caixaService = caixaService;
 }
 public BankController(ICaixaService caixaService)
 {
     _caixaService = caixaService;
 }
 public CaixaAppService(ICaixaService caixaService, IUnitOfWork uow, IMapper mapper) : base(uow)
 {
     _caixaService = caixaService;
     _uow          = uow;
     _mapper       = mapper;
 }
Beispiel #7
0
 public ReceberService(IReceberRepository receberRepository,
                       ICaixaService caixaService)
 {
     _receberRepository = receberRepository;
     _caixaService      = caixaService;
 }
 public CaixaController(ILogger <CaixaController> logger, ICaixaService service)
 {
     _logger  = logger;
     _service = service;
 }
Beispiel #9
0
 public CaixaController(IMapper mapper, ICaixaService caixaService) :
     base(mapper)
 {
     this._caixaService = caixaService;
 }
 public CaixaController(ICaixaService service)
 {
     _service = service;
 }
 public BankHubController(IHubContext <BankHub> hub, ICaixaService caixaService)
 {
     _hub          = hub;
     _caixaService = caixaService;
 }
Beispiel #12
0
 public CaixaAppServiceBase(ICaixaService caixaService)
     : base(caixaService)
 {
     _caixaService = caixaService;
 }
 public PagarService(IPagarRepository pagarRepository,
                     ICaixaService caixaService)
 {
     _pagarRepository = pagarRepository;
     _caixaService    = caixaService;
 }