Sky.Net/Core/Interfaces/IBasketRepository.cs

16 lines
389 B
C#
Raw Normal View History

2022-05-17 14:04:42 -07:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Core.Entities;
namespace Core.Interfaces
{
public interface IBasketRepository
{
2022-05-17 16:29:34 -07:00
Task<CustomerBasket> GetBasketAsync(string basketId);
2022-05-17 14:04:42 -07:00
Task<CustomerBasket> UpdateBasketAsync(CustomerBasket basket);
Task<bool> DeleteBasketAsysnc(string basketId);
}
}