public RapAnulacaoService(ILogError log, ICommon common, IChaveCicsmo chave, ICrudRapAnulacao repository, ICrudRapAnulacaoNota notas, ICrudPrograma programa, ICrudFonte fonte, ICrudEstrutura estrutura, IProdespLiquidacaoDespesa prodesp, ISiafemLiquidacaoDespesa siafem) : base(log, common, chave) { _prodesp = new ProdespLiquidacaoDespesaService(log, prodesp, estrutura); _siafem = new SiafemLiquidacaoDespesaService(log, siafem, programa, fonte, estrutura); _notas = new RapAnulacaoNotaService(log, notas); _chave = new ChaveCicsmoService(log, chave); _repository = repository; }
public RapAnulacaoNotaService(ILogError log, ICrudRapAnulacaoNota repository) : base(log) { _repository = repository; }