using Drab.LocalDb.Entities; using Drab.Logic.Dtos; using System.Collections.Generic; using System.Threading.Tasks; namespace Drab.Logic.Interfaces; public interface ILocalOrderStore { public Task> GetAll(); public Task GetOrderById(long dokId); }