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; } }
public bool deleteDocGia(string MaDocGia) { return(dalDocGia.Delete(MaDocGia)); }