/// <summary>
 /// Counts this instance.
 /// </summary>
 /// <returns></returns>
 public int Count()
 {
     try
     {
         return(_rabbitWrapper.Count());
     }
     catch (Exception exception)
     {
         Logger.Error("Error Controller Count", exception);
         throw;
     }
 }