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 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)
 {
 }
Ejemplo n.º 4
0
 public ChatLogRepository(MhundDbContext db) : base(db)
 {
 }
 public CadforpsRepository(MhundDbContext db) : base(db)
 {
 }
Ejemplo n.º 6
0
 public PessoasRepository(MhundDbContext db) : base(db)
 {
 }
Ejemplo n.º 7
0
 public AlunosRepository(MhundDbContext db) : base(db)
 {
 }
 public AppCfgRepository(MhundDbContext db) : base(db)
 {
 }
Ejemplo n.º 9
0
 protected RepositoryBase(MhundDbContext db)
 {
     this._db = db;
 }
Ejemplo n.º 10
0
 public HistoricoRepository(MhundDbContext db) : base(db)
 {
 }
 public ProfHabilitaRepository(MhundDbContext db) : base(db)
 {
 }