using System.Threading.Tasks; namespace Webshop.Application.Services.Customers.Interfaces { public interface ICartService { Task ClearCartAsync(string userId); } }