public PesquisarContatosDomain(MhundDbContext db,
                                UsuarioLogado usuarioLogado,
                                ISaeHelperCookie saeHelperCookie,
                                ProfHabilitaRepository habilitaRepository,
                                HistoricoRepository historicoRepository)
 {
     this._db                  = db;
     this._usuarioLogado       = usuarioLogado;
     this._saeHelperCookie     = saeHelperCookie;
     this._habilitaRepository  = habilitaRepository;
     this._historicoRepository = historicoRepository;
 }
Ejemplo n.º 2
0
 public PesquisarContatosController(IViewRenderService viewRenderService,
                                    PesquisarContatosDomain pesquisarContatosDomain,
                                    UsuarioLogado usuarioLogado,
                                    ProfHabilitaRepository profHabilitaRepository,
                                    HistoricoRepository historicoRepository
                                    )
 {
     this._viewRenderService       = viewRenderService;
     this._pesquisarContatosDomain = pesquisarContatosDomain;
     this._usuarioLogado           = usuarioLogado;
     this._profHabilitaRepository  = profHabilitaRepository;
     this._historicoRepository     = historicoRepository;
 }