using PurchaseBff.Models; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace PurchaseBff.Services { public interface IBasketService { Task GetById(string id); } }