示例#1
0
 /// <summary>
 /// Retrieves a group by id
 /// </summary>
 /// <param name="groupID"></param>
 /// <returns></returns>
 public Group RetrieveGroupByID(string groupID)
 {
     try
     {
         return(_groupAccessor.SelectGroupByID(groupID));
     }
     catch (Exception ex)
     {
         throw new ApplicationException("Group not found", ex);
     }
 }