コード例 #1
0
 public UsuarioController(AlunosRepository alunosRepository,
                          CadforpsRepository cadforpsRepository,
                          PessoasRepository pessoasRepository,
                          ISaeHelperCookie saeHelperCookie)
 {
     this._alunosRepository   = alunosRepository;
     this._cadforpsRepository = cadforpsRepository;
     this._pessoasRepository  = pessoasRepository;
     this._saeHelperCookie    = saeHelperCookie;
 }
コード例 #2
0
 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;
 }
コード例 #3
0
 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;
 }
コード例 #4
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;
 }