Exemple #1
0
 public bool Insert(HocSinh hocSinh)
 {
     if (string.IsNullOrEmpty(hocSinh.MaHS) || string.IsNullOrEmpty(hocSinh.TenHS) || string.IsNullOrEmpty(hocSinh.DiaChi))
     {
         return(false);
     }
     if (hocSinhDAO.IsExisted(hocSinh.MaHS))
     {
         return(false);
     }
     return(hocSinhDAO.Insert(hocSinh));
 }