Sky.Net/Core/Interfaces/IBasketRepository.cs
2022-05-17 14:04:42 -07:00

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);
}
}