using AsbCloudApp.Data; using System; using System.Threading; using System.Threading.Tasks; namespace AsbCloudApp.Services { /// /// Сервис расписания смен бурильщика /// public interface IScheduleService : ICrudWellRelatedService { // TODO: this should be nullable. /// /// получить бурильщика по idWell и времени /// /// /// /// /// Task GetDrillerAsync(int idWell, DateTime workTime, CancellationToken token); } }