示例#1
0
    public string GetStudentNameForId(int studentid)
    {
        string studentName = "";

        try{
            studentName = studentDao.GetStudentNameForId(studentid);
        }
        catch (CustomException e)
        {
            throw e;
        }
        return(studentName);
    }