public void CanPaginateProductsTest()
        {
            Products productsBeforePagination = new Products();
            Products productsAfterPagination =
                productsBeforePagination.Paginate<Product>() as Products;

            Assert.That(productsAfterPagination, Is.Not.Null);
        }