2018-01-29 16:58:08 +01:00

14 lines
255 B
C#

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