ShopOnlineSolution/ShopOnline.Web/Services/Contracts/IManageCartItemsLocalStorag...

12 lines
294 B
C#

using ShopOnline.Models.Dtos;
namespace ShopOnline.Web.Services.Contracts
{
public interface IManageCartItemsLocalStorageService
{
Task<List<CartItemDto>> GetCollection();
Task SaveCollection(List<CartItemDto> cartItemDtos);
Task RemoveCollection();
}
}