示例#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_NhanVien.Delete(Id));
     }
     catch (Exception Err)
     {
         throw;
     }
 }
示例#2
0
 public bool Delete(string str)
 {
     return(dal.Delete(str));
 }
示例#3
0
 public string Delete(DTO_NhanVien obj)
 {
     return(dal.Delete(obj));
 }
示例#4
0
 public int Delete(NhanVien n)
 {
     return(nv.Delete(n));
 }