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

12 lines
264 B
C#

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<Result<List<DokDto>, string>> FetchOrders();
}