public LancamentosApplication(IUnitOfWork <TContext> context,
                               ILancamentosService <TContext> lancamentoService,
                               IContaCorrenteService <TContext> contaCorrenteService) : base(context, lancamentoService)
 {
     _lancamentoService    = lancamentoService;
     _contaCorrenteService = contaCorrenteService;
 }
Beispiel #2
0
 public LancamentosController(ILancamentosService lancamentosService, IDropdownService dropdownService)
 {
     _lancamentosService = lancamentosService;
     _dropdownService    = dropdownService;
 }