예제 #1
0
 public DesdobramentoService(ILogError log, ICommon common, IChaveCicsmo chave, ICrudDesdobramento repository, IProdespPagamentoContaUnica prodesp)
     : base(log, common, chave)
 {
     _prodesp            = new ProdespPagamentoContaUnicaService(new LogErrorDal(), new ProdespPagamentoContaUnicaWs());
     _chave              = new ChaveCicsmoService(log, chave);
     _repository         = repository;
     _identityRepository = new IdentificacaoDesdobramentoService(new IdentificacaoDesdobramentoDal());
     _tipoRepository     = new DesdobramentoTipoService(new DesdobramentoTipoDal());
     _docRepository      = new DocumentoTipoService(new DocumentoTipoDal());
 }
예제 #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());
 }
 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());
 }