public IEnumerable <ShoppingCartItem> GetRange(int skip, int take)
 {
     return(_shoppingCartItemRepository.GetRange(skip, take));
 }