Exemplo n.º 1
0
 public Task AddCustomer(Customer customerToAdd)
 {
     return Task.Run(() =>
     {
         _customers.Add(customerToAdd);
         _customerRefreshTrigger.OnNext(Unit.Default);
     });
 }
Exemplo n.º 2
0
 public Task AddCustomer(Customer CustomerToAdd)
 {
     throw new NotImplementedException();
 }