public List <Student> GetListStudentsOfSchool(int IdSchool) { if (!_dalschool.IsExist(IdSchool)) { return(null); } return(_dal.GetListStudent(IdSchool)); }