public ProcedimentoCommandHandler(IProcedimentoRepository procedimentoRepository,
                                   IProcedimentoTipoRepository procedimentoTipoRepository,
                                   IArtigoRepository artigoRepository,
                                   IAssuntoRepository assuntoRepository,
                                   IMunicipioRepository municipioRepository,
                                   IVaraCriminalRepository varaCriminalRepository,
                                   IUnidadePolicialRepository unidadePolicialRepository,
                                   ISituacaoProcedimentoRepository situacaoProcedimentoRepository,
                                   ISituacaoRepository situacaoRepository,
                                   IVitimaRepository vitimaRepository,
                                   IIndiciadoRepository indiciadoRepository,
                                   IMovimentacaoRepository movimentacaoRepository,
                                   IObjetoApreendidoRepository objetoApreendidoRepository,
                                   IUnitOfWork uow,
                                   IMediatorHandler bus,
                                   INotificationHandler <DomainNotification> notifications) : base(uow, bus, notifications)
 {
     _procedimentoRepository         = procedimentoRepository;
     _procedimentoTipoRepository     = procedimentoTipoRepository;
     _artigoRepository               = artigoRepository;
     _assuntoRepository              = assuntoRepository;
     _municipioRepository            = municipioRepository;
     _varaCriminalRepository         = varaCriminalRepository;
     _unidadePolicialRepository      = unidadePolicialRepository;
     _situacaoProcedimentoRepository = situacaoProcedimentoRepository;
     _situacaoRepository             = situacaoRepository;
     _vitimaRepository               = vitimaRepository;
     _indiciadoRepository            = indiciadoRepository;
     _movimentacaoRepository         = movimentacaoRepository;
     _objetoApreendidoRepository     = objetoApreendidoRepository;
 }
示例#2
0
 public IndiciadoCommandHandler(IIndiciadoRepository indiciadoRepository,
                                IProcedimentoRepository procedimentoRepository,
                                IMunicipioRepository municipioRepository,
                                IUnitOfWork uow,
                                IMediatorHandler bus,
                                INotificationHandler <DomainNotification> notifications)
     : base(uow, bus, notifications)
 {
     _indiciadoRepository    = indiciadoRepository;
     _procedimentoRepository = procedimentoRepository;
     _municipioRepository    = municipioRepository;
 }
示例#3
0
 public IndiciadoAppService(IMapper mapper, IIndiciadoRepository repository, IMediatorHandler bus)
     : base(mapper, repository, bus)
 {
     _indiciadoRepository = repository;
 }