2022-05-22 21:18:43 +05:00
|
|
|
|
using AsbCloudApp.Data;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Services
|
|
|
|
|
{
|
2022-06-14 15:35:31 +05:00
|
|
|
|
public interface IScheduleService : ICrudWellRelatedService<ScheduleDto>
|
2022-05-22 21:18:43 +05:00
|
|
|
|
{
|
2022-06-14 15:35:31 +05:00
|
|
|
|
Task<DrillerDto> GetDrillerAsync(int idWell, DateTime workTime, CancellationToken token);
|
2022-05-22 21:18:43 +05:00
|
|
|
|
}
|
|
|
|
|
}
|