using Drab.Core.Models; using Drab.Logic.Dtos; using System; using System.Collections.Generic; using System.Threading.Tasks; namespace Drab.Logic.Interfaces; public interface IOrdersStore : IDisposable { Task, string>> FetchOrders(); }