14 lines
255 B
C#
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);
|
|
}
|
|
}
|