Пример #1
0
        public async Task HandleAsync(CreateBasket command, ICorrelationContext context)
        {
            CustomerBasket newBasket = new CustomerBasket(command.BasketId);

            newBasket.CreateBasket(command.BuyerId);

            await _basketRepo.AddAsync(newBasket);
        }