Newer
Older
MessageEncryption / src / ApplicationCore / Interfaces / IOrderService.cs
@Derek Comartin Derek Comartin on 1 Dec 2021 300 bytes Init
using Microsoft.eShopWeb.ApplicationCore.Entities.OrderAggregate;
using System.Threading.Tasks;

namespace Microsoft.eShopWeb.ApplicationCore.Interfaces
{
    public interface IOrderService
    {
        Task CreateOrderAsync(int basketId, Address shippingAddress, CreditCard creditCard);
    }
}