Beispiel #1
0
        public void DeleteCustomerTransactionTest()
        {
            var customer = _test.GetCustomerById(_newId);

            _testTrans.DeleteCustomerTransaction(customer);
            "==>DeleteCustomerTransactionTest:".Output();
        }
Beispiel #2
0
        private void UpdateCustomerTest()
        {
            var customer = _test.GetCustomerById(_newId);

            customer.FirstName = $"Jackie{_newId}";
            _testAUD.UpdateCustomer(customer);
            "==>UpdateCustomerTest:".Output();
        }