Пример #1
0
 public override async Task <(bool isSuccessful, string errorMessage)> ProcessMessageAsync(CustomerRegistrationEvent message)
 {
     return(await _customerProfileService.CreateCustomerProfileAsync(Guid.Parse(message.CustomerId)));
 }