Newer
Older
InMemoryBus / src / ApplicationCore / Interfaces / IOrderService.cs
@Derek Comartin Derek Comartin on 17 Jan 2023 259 bytes Init
using System.Threading.Tasks;
using Microsoft.eShopWeb.ApplicationCore.Entities.OrderAggregate;

namespace Microsoft.eShopWeb.ApplicationCore.Interfaces;

public interface IOrderService
{
    Task CreateOrderAsync(int basketId, Address shippingAddress);
}