forked from ddrilling/AsbCloudServer
14 lines
388 B
C#
14 lines
388 B
C#
using System.Collections.Generic;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using AsbCloudApp.Data;
|
|
|
|
namespace AsbCloudApp.Services
|
|
{
|
|
public interface IDrillParamsService : ICrudService<DrillParamsDto>
|
|
{
|
|
Task<DrillParamsDto> GetDefaultDrillParamsAsync(int idWell, double startDepth,
|
|
double endDepth, CancellationToken token = default);
|
|
}
|
|
}
|