Ejemplo n.º 1
0
 public async Task AddCommentToCustomer(string email, string comment)
 {
     await Task.Factory.StartNew(() =>
     {
         client.AddCommentToCustomer(email, comment);
     }).ConfigureAwait(false);
 }