public static bool Delete(Int32 groupId, Int32 roleId) { GroupRole groupRole = new GroupRole(); if (groupRole.Load(groupId, roleId)) { return(groupRole.Delete()); } return(false); }
public static bool Delete(GroupRole groupRole) { return(groupRole.Delete()); }