2021-08-29 17:25:16 +05:00
|
|
|
|
using AsbCloudApp.Data;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Services
|
|
|
|
|
{
|
|
|
|
|
public interface IDrillingProgramService
|
|
|
|
|
{
|
2022-02-09 14:25:22 +05:00
|
|
|
|
Task<DrillingProgramStateDto> GetStateAsync(int idWell, int fileChangerId,
|
2021-11-02 16:33:49 +05:00
|
|
|
|
CancellationToken token = default);
|
2022-02-09 14:25:22 +05:00
|
|
|
|
Task<int> CreateFileMarkAsync(FileMarkDto fileMarkDto, int idUser, CancellationToken token);
|
2021-11-09 17:36:44 +05:00
|
|
|
|
Task<int> MarkFileMarkAsDeletedAsync(int idMark, CancellationToken token);
|
2021-08-29 17:25:16 +05:00
|
|
|
|
}
|
|
|
|
|
}
|