static public void Delete(System.String id, esSqlAccessType sqlAccessType) { var obj = new Group(); obj.Id = id; obj.AcceptChanges(); obj.MarkAsDeleted(); obj.Save(sqlAccessType); }
static public void Delete(System.String id) { var obj = new Group(); obj.Id = id; obj.AcceptChanges(); obj.MarkAsDeleted(); obj.Save(); }