Пример #1
0
 public static bool Delete(string Id)
 {
     if (Id == "")
     {
         throw new Exception("Mã người dùng không được rỗng!");
     }
     try
     {
         return(DAL_DocGia.Delete(Id));
     }
     catch (Exception Err)
     {
         throw;
     }
 }
Пример #2
0
 public bool deleteDocGia(string MaDocGia)
 {
     return(dalDocGia.Delete(MaDocGia));
 }