Sky.Net/Infrastructure/Data/BasketRepository.cs

27 lines
665 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;
using Core.Interfaces;
namespace Infrastructure.Data
{
public class BasketRepository : IBasketRepository
{
public Task<bool> DeleteBasketAsysnc(string basketId)
{
throw new NotImplementedException();
}
public Task<CustomerBasket> GetCustomerBasketAsync(string basketId)
{
throw new NotImplementedException();
}
public Task<CustomerBasket> UpdateBasketAsync(CustomerBasket basket)
{
throw new NotImplementedException();
}
}
}