Files
ShopSolution-backend/Webshop.Application/Services/Customers/Interfaces/ICartService.cs
Tizian.Breuch ee5abfd829 checkout
2025-11-26 17:02:18 +01:00

9 lines
187 B
C#

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