public async Task CatalogWebApiGetId()
		{
			// Arrange
			CatalogController controller = new CatalogController(catalogService.Object);

			// Act
			OkNegotiatedContentResult<Product> result = await controller.Get("15") as OkNegotiatedContentResult<Product>;

			// Assert
			Assert.IsNotNull(result);
			Assert.AreEqual("15", result.Content.Name);
		}
		public async Task CatalogWebApiGet()
		{
			// Arrange
			CatalogController controller = new CatalogController(catalogService.Object);

			// Act
			IEnumerable<Product> result = await controller.Get() as IEnumerable<Product>;

			// Assert
			Assert.IsNotNull(result);
			Assert.AreEqual(totalProducts, result.Count());
		}