public Student Get(int id) { try { if (id < 1) { return(null); } return(studentDAL.Get(id)); } catch { return(null); } }