forked from ddrilling/AsbCloudServer
25 lines
794 B
C#
25 lines
794 B
C#
|
using AsbCloudApp.Data;
|
|||
|
using AsbCloudApp.Requests;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Threading;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace AsbCloudApp.Services
|
|||
|
{
|
|||
|
#nullable enable
|
|||
|
/// <summary>
|
|||
|
/// Сервис по ограничивающим параметрам с фильтрацией
|
|||
|
/// </summary>
|
|||
|
public interface ILimitingParameterService
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Получение информации идентификатору скважины
|
|||
|
/// </summary>
|
|||
|
/// <param name="request"></param>
|
|||
|
/// <param name="token"></param>
|
|||
|
/// <returns></returns>
|
|||
|
Task<IEnumerable<LimitingParameterDto>?> GetInfosAsync(LimitingParameterRequest request, CancellationToken token);
|
|||
|
}
|
|||
|
#nullable disable
|
|||
|
}
|