Exemplo n.º 1
0
    public Boolean UpdateStudent(StudentVO instudent)
    {
        Boolean status = false;

        try
        {
            status = studentDao.UpdateStudent(instudent);
        }
        catch (CustomException e)
        {
            throw e;
        }
        return(status);
    }