Exemplo n.º 1
0
    public List <string> GetAllStudentIDAsList()
    {
        List <string> studentIds = new List <string>();

        try
        {
            studentIds = studentDao.GetAllStudentIDAsList();
        }
        catch (CustomException e)
        {
            throw e;
        }
        return(studentIds);
    }