public LoginController(SaeCriptography saeCriptography,
                        UsuarioLogado usuarioLogado,
                        ConnectionManager connectionManager,
                        AppCfgRepository appCfgRepository)
 {
     this._saeCriptography   = saeCriptography;
     this._usuarioLogado     = usuarioLogado;
     this._connectionManager = connectionManager;
     this._appCfgRepository  = appCfgRepository;
 }
 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;
 }