12 lines
264 B
C#
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();
|
|
} |