Exemple #1
0
 public bool Sua(TheLoaiDTO tlDTO)
 {
     if (tlDTO.Ten == "")
     {
         throw new Exception("Chưa nhập tên thể loại!");
     }
     return(tlDAO.Sua(tlDTO));
 }