public void DeleteExistingCustomerTestValid()
        {
            try
            {
                _customerDataService.DeleteExistingCustomer(1);

                _customerDataService.GetCustomerById(1);
            }
            catch (InvalidOperationException e)
            {
                Assert.IsTrue(true);
            }
        }