Newer
Older
eShopOnWeb-MessageDriven / src / ApplicationCore / Interfaces / IOrderRepository.cs
@Derek Comartin Derek Comartin on 29 Jun 2021 288 bytes Add NServiceBus
using Microsoft.eShopWeb.ApplicationCore.Entities.OrderAggregate;
using System.Threading.Tasks;

namespace Microsoft.eShopWeb.ApplicationCore.Interfaces
{

    public interface IOrderRepository : IAsyncRepository<Order>
    {
        Task<Order> GetByIdWithItemsAsync(int id);
    }
}