mirror of
https://github.com/valentincanonical/eShopOnWeb-chisel-demo.git
synced 2026-05-07 00:46:47 +00:00
11 lines
239 B
C#
11 lines
239 B
C#
using ApplicationCore.Entities.OrderAggregate;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ApplicationCore.Interfaces
|
|
{
|
|
public interface IOrderService
|
|
{
|
|
Task CreateOrderAsync(int basketId, Address shippingAddress);
|
|
}
|
|
}
|