public async Task Get_Inventory_With_Correct_Product()
        {
            IInventoryRepository inventoryRepository = new InventoryRepository("Dummy_ConnectionString");
            var inventory = await inventoryRepository.CheckInventory("1", 5).ConfigureAwait(false);

            if (inventory)
            {
                Assert.IsTrue(inventory, "Test Passed.");
            }
            else
            {
                Assert.IsFalse(inventory, "Test Failed.");
            }
        }