forked from ddrilling/AsbCloudServer
4c68045398
Add entity DrillingProgram parts
14 lines
489 B
C#
14 lines
489 B
C#
using AsbCloudApp.Data;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AsbCloudApp.Services
|
|
{
|
|
public interface IDrillingProgramService
|
|
{
|
|
Task<DrillingProgramStateDto> GetStateAsync(int idWell, int fileChangerId,
|
|
CancellationToken token = default);
|
|
Task<int> CreateFileMarkAsync(FileMarkDto fileMarkDto, int idUser, CancellationToken token);
|
|
Task<int> MarkFileMarkAsDeletedAsync(int idMark, CancellationToken token);
|
|
}
|
|
} |