ShopOnlineSolution/ShopOnline.Web/Services/Contracts/IShoppingCartService.cs

11 lines
267 B
C#

using ShopOnline.Models.Dtos;
namespace ShopOnline.Web.Services.Contracts
{
public interface IShoppingCartService
{
Task<IEnumerable<CartItemDto>> GetItems(int userId);
Task<CartItemDto> AddItem(CartItemToAddDto cartItemToAddDto);
}
}