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