This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Handler : IAsyncRequestHandler<Envelope<Command>, Unit> | |
{ | |
private readonly CustomeRepository _repository; | |
public Handler(CustomeRepository repository) | |
{ | |
_repository = repository; | |
} | |
public async Task<Unit> Handle(Envelope<Command> message) | |
{ | |
if (message.Body.CustomerId == Guid.Empty) throw new InvalidOperationException("CustomerId cannot be empty."); | |
var customer = _repository.Get(message.Body.CustomerId); | |
try | |
{ | |
customer.SetOperation(message.MessageId); | |
} | |
catch (InvalidOperationException) | |
{ | |
return Unit.Value; | |
} | |
customer.ChangePricingLevel(message.Body.PricingLevel); | |
await _repository.SaveAsync(customer); | |
return Unit.Value; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment