2021-10-11 15:21:26 +05:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using AsbCloudApp.Data;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Services
|
|
|
|
|
{
|
2021-10-11 16:43:10 +05:00
|
|
|
|
public interface IDrillParamsService : ICrudService<DrillParamsDto>
|
2021-10-11 15:21:26 +05:00
|
|
|
|
{
|
2021-10-12 11:30:07 +05:00
|
|
|
|
Task<DrillParamsDto> GetDefaultDrillParamsAsync(int idWell, double startDepth,
|
2021-10-11 15:21:26 +05:00
|
|
|
|
double endDepth, CancellationToken token = default);
|
2021-10-12 12:02:28 +05:00
|
|
|
|
|
|
|
|
|
Task<IEnumerable<DrillParamsDto>> GetAllAsync(int idWell,
|
|
|
|
|
CancellationToken token = default);
|
2021-10-11 15:21:26 +05:00
|
|
|
|
}
|
|
|
|
|
}
|