/// <summary>
 ///
 /// </summary>
 /// <returns></returns>
 public IEnumerable <ActionCategory> GetActionCategorys(Func <ActionCategory, bool> where)
 {
     if (@where == null)
     {
         throw new ArgumentException("where");
     }
     return(_roleRepository.GetMany(where));
 }