public void EditHumanCase(HumanCaseInfo hc) { Check(PermissionHelper.UpdatePermission(EIDSSPermissionObject.HumanCase)); hc.Save(true); }
public string CreateHumanCase(HumanCaseInfo hc) { Check(PermissionHelper.InsertPermission(EIDSSPermissionObject.HumanCase)); hc.Save(true); return(hc.Id.ToString()); }