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