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