using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using TestAppRuna.API; namespace TestAppRuna.Services { public interface ICartService { Task> Get(); Task> GetFromCustomer(Guid customerId); Task CreateOrUpdateCart(CartCreateUpdateModel model); Task DeleteCart(CartDeleteModel model); Task HasCustomerID(Guid customerId); Task HasProductID(Guid productId); } }