Пример #1
0
        private async void AddCustomer()
        {
            //Validate New Customer
            var customer = await _CustomerDataService.AddCustomerAsync(NewCustomer);

            NewCustomer = new Customer {
            };
            Customers.Add(customer);
        }