示例#1
0
 /// <summary>
 /// Deletes a group
 /// </summary>
 /// <param name="groupID"></param>
 /// <returns></returns>
 public bool DeleteGroup(string groupID)
 {
     try
     {
         return(1 == _groupAccessor.DeleteGroup(groupID));
     }
     catch (Exception ex)
     {
         throw new ApplicationException("Group not deleted", ex);
     }
 }