public DocumentoBaixaController(IDocumentoBaixaRepository repository,
                                 IDocumentoBaixaService service,
                                 IMapper mapper)
 {
     _repository = repository;
     _service    = service;
     _mapper     = mapper;
 }
Esempio n. 2
0
 public DocumentoService(IDocumentoRepository repository,
                         IDocumentoBaixaRepository repositoryBaixa,
                         IPessoaRepository pessoaRepository,
                         IPessoaService pessoaService,
                         INotificador notificador) : base(notificador)
 {
     _repository       = repository;
     _repositoryBaixa  = repositoryBaixa;
     _pessoaRepository = pessoaRepository;
     _pessoaService    = pessoaService;
 }
 public DocumentoBaixaService(IDocumentoBaixaRepository repository,
                              INotificador notificador) : base(notificador)
 {
     _repository = repository;
 }