Example #1
0
    public int GetAlunoId(Aluno aluno)
    {
        int idAlunoLogado;

        try
        {
            idAlunoLogado = loginDAO.GetAlunoId(aluno);
        }
        catch (ExcecaoSAG ex)
        {
            throw new ExcecaoSAG(ex.getMsg());
        }
        return(idAlunoLogado);
    }