Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Created January 27, 2021 22:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dcomartin/4195ef53cfaea46382e6558673da026e to your computer and use it in GitHub Desktop.
Save dcomartin/4195ef53cfaea46382e6558673da026e to your computer and use it in GitHub Desktop.
public class PlaceOrderHandler : IHandleMessages<PlaceOrder>
{
private readonly SalesDbContext _dbContext;
private readonly WarehouseInventoryQuery.DoAllProductsHaveQtyOnHand _doAllProductsHaveQtyOnHand;
public PlaceOrderHandler(SalesDbContext dbContext, WarehouseInventoryQuery.DoAllProductsHaveQtyOnHand doAllProductsHaveQtyOnHand)
{
_dbContext = dbContext;
_doAllProductsHaveQtyOnHand = doAllProductsHaveQtyOnHand;
}
public async Task Handle(PlaceOrder message, IMessageHandlerContext context)
{
if (_doAllProductsHaveQtyOnHand(message.OrderId) == false)
{
return;
}
await _dbContext.Orders.AddAsync(new Order
{
OrderId = message.OrderId,
Status = OrderStatus.Pending
});
await _dbContext.SaveChangesAsync();
var orderPlaced = new OrderPlaced
{
OrderId = message.OrderId
};
await context.Publish(orderPlaced);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment