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