public int GetByRestaurantTotalCount(int restaurantID, int menuId, int page)
 {
     Condition.WithExceptionOnFailure <InvalidParameterException>()
     .Requires(_menuItemRepository, "_menuItemRepository")
     .IsNotNull();
     return(_menuItemRepository.GetByRestaurantTotalCount(restaurantID, menuId, page));
 }