15 lines
302 B
C#
Raw Normal View History

2018-01-29 15:58:08 +00:00
using PurchaseBff.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace PurchaseBff.Services
{
public interface IBasketService
{
Task<BasketData> GetById(string id);
Task Update(BasketData currentBasket);
2018-01-29 15:58:08 +00:00
}
}