public ChatHub(ISaeHelperCookie saeHelperCookie, GroupBuilder groupBuilder, ChatProfessRepository chatProfessRepository) { this._saeHelperCookie = saeHelperCookie; this._groupBuilder = groupBuilder; this._chatProfessRepository = chatProfessRepository; }
public UsuarioController(AlunosRepository alunosRepository, CadforpsRepository cadforpsRepository, PessoasRepository pessoasRepository, ISaeHelperCookie saeHelperCookie) { this._alunosRepository = alunosRepository; this._cadforpsRepository = cadforpsRepository; this._pessoasRepository = pessoasRepository; this._saeHelperCookie = saeHelperCookie; }
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; }
public UsuarioLogado(ISaeHelperSession saeHelperSession, ISaeHelperCookie saeHelperCookie, SaeCriptography saeCriptography, AlunosRepository alunosRepository, AppCfgRepository appCfgRepository, CadforpsRepository cadforpsRepository, PessoasRepository pessoasRepository, HistoricoRepository historicoRepository) { this._saeHelperSession = saeHelperSession; this._saeHelperCookie = saeHelperCookie; this._saeCriptography = saeCriptography; this._alunosRepository = alunosRepository; this._appCfgRepository = appCfgRepository; this._cadforpsRepository = cadforpsRepository; this._pessoasRepository = pessoasRepository; this._historicoRepository = historicoRepository; }
public ChatController(UsuarioLogado usuarioLogado, ChatDomain chatDomain, GroupBuilder groupBuilder, AlunosRepository alunosRepository, CadforpsRepository cadforpsRepository, PessoasRepository pessoasRepository, ISaeHelperCookie saeHelperCookie, ChatLogRepository chatLogRepository) { this._usuarioLogado = usuarioLogado; this._chatDomain = chatDomain; this._groupBuilder = groupBuilder; this._alunosRepository = alunosRepository; this._cadforpsRepository = cadforpsRepository; this._pessoasRepository = pessoasRepository; this._saeHelperCookie = saeHelperCookie; this._chatLogRepository = chatLogRepository; }
public ChatDomain(ISaeHelperCookie helperCookie, GroupBuilder groupBuilder, ChatProfessRepository chatProfessRepository, AlunosRepository alunosRepository, CadforpsRepository cadforpsRepository, PessoasRepository pessoasRepository, MhundDbContext db, UsuarioLogado usuarioLogado) { this._helperCookie = helperCookie; this._groupBuilder = groupBuilder; this._chatProfessRepository = chatProfessRepository; this._alunosRepository = alunosRepository; this._cadforpsRepository = cadforpsRepository; this._pessoasRepository = pessoasRepository; this._db = db; this._usuarioLogado = usuarioLogado; }
public GroupBuilder(ISaeHelperCookie saeHelperCookie) { this._saeHelperCookie = saeHelperCookie; }
public ErrorController(IHttpContextAccessor httpContextAccessor, ISaeHelperCookie saeHelperCookie) { this._httpContextAccessor = httpContextAccessor; this._saeHelperCookie = saeHelperCookie; }