9 lines
187 B
C#
9 lines
187 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Webshop.Application.Services.Customers.Interfaces
|
|
{
|
|
public interface ICartService
|
|
{
|
|
Task ClearCartAsync(string userId);
|
|
}
|
|
} |