public ProgramacaoDesembolsoService(ILogError log, ICommon common, IChaveCicsmo chave,
                                     ICrudProgramacaoDesembolso repository, ICrudProgramacaoDesembolsoAgrupamento agrupamento,
                                     ICrudPagamentoContaUnicaEvento <ProgramacaoDesembolsoEvento> eventos, ISiafemPagamentoContaUnica siafem, IProdespPagamentoContaUnica prodesp)
     : base(log, common, chave)
 {
     _prodesp        = new ProdespPagamentoContaUnicaService(log, prodesp);
     _siafem         = new SiafemPagamentoContaUnicaService(log, siafem);
     _agrupamento    = new ProgramacaoDesembolsoAgrupamentoService(log, agrupamento);
     _eventos        = new ProgramacaoDesembolsoEventoService(log, eventos);
     _chave          = new ChaveCicsmoService(log, chave);
     _repository     = repository;
     _docRepository  = new DocumentoTipoService(new DocumentoTipoDal());
     _tipoRepository = new ProgramacaoDesembolsoTipoService(new ProgramacaoDesembolsoTipoDal());
 }
Пример #2
0
 public ReclassificacaoRetencaoService(ILogError log, ICommon common, IChaveCicsmo chave,
                                       ICrudReclassificacaoRetencao repository, ICrudPagamentoContaUnicaNota <ReclassificacaoRetencaoNota> notas, ICrudPagamentoContaUnicaEvento <ReclassificacaoRetencaoEvento> eventos, ISiafemPagamentoContaUnica siafem
                                       , NlParametrizacaoService parametrizacaoService)
     : base(log, common, chave)
 {
     _siafem  = new SiafemPagamentoContaUnicaService(log, siafem);
     _notas   = new ReclassificacaoRetencaoNotaService(log, notas);
     _eventos = new ReclassificacaoRetencaoEventoService(log, eventos);
     _parametrizacaoService = parametrizacaoService;
     _chave         = new ChaveCicsmoService(log, chave);
     _repository    = repository;
     _docRepository = new DocumentoTipoService(new DocumentoTipoDal());
 }
Пример #3
0
 public ReclassificacaoRetencaoEventoService(ILogError log, ICrudPagamentoContaUnicaEvento <ReclassificacaoRetencaoEvento> repository) : base(log)
 {
     _repository = repository;
 }
 public ProgramacaoDesembolsoEventoService(ILogError log, ICrudPagamentoContaUnicaEvento <ProgramacaoDesembolsoEvento> repository) : base(log)
 {
     _repository = repository;
 }