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