DRAB/Drab.Logic/Interfaces/ILocalOrderStore.cs
2025-07-11 00:18:14 +02:00

12 lines
282 B
C#

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<List<OrderDb>> GetAll();
public Task<DokDto> GetOrderById(long dokId);
}