16 lines
397 B
C#
16 lines
397 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Threading.Tasks;
|
||
|
using Core.Entities;
|
||
|
|
||
|
namespace Core.Interfaces
|
||
|
{
|
||
|
public interface IBasketRepository
|
||
|
{
|
||
|
Task<CustomerBasket> GetCustomerBasketAsync(string basketId);
|
||
|
Task<CustomerBasket> UpdateBasketAsync(CustomerBasket basket);
|
||
|
Task<bool> DeleteBasketAsysnc(string basketId);
|
||
|
|
||
|
}
|
||
|
}
|