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; } }
public bool Delete(string str) { return(dal.Delete(str)); }
public string Delete(DTO_NhanVien obj) { return(dal.Delete(obj)); }
public int Delete(NhanVien n) { return(nv.Delete(n)); }