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 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 ChatProfessRepository(MhundDbContext db) : base(db) { }
public ChatLogRepository(MhundDbContext db) : base(db) { }
public CadforpsRepository(MhundDbContext db) : base(db) { }
public PessoasRepository(MhundDbContext db) : base(db) { }
public AlunosRepository(MhundDbContext db) : base(db) { }
public AppCfgRepository(MhundDbContext db) : base(db) { }
protected RepositoryBase(MhundDbContext db) { this._db = db; }
public HistoricoRepository(MhundDbContext db) : base(db) { }
public ProfHabilitaRepository(MhundDbContext db) : base(db) { }