using AsbCloudApp.Data; using System; using System.Threading; using System.Threading.Tasks; namespace AsbCloudApp.Services { /// /// Репозиторий расписания смен бурильщика /// public interface IScheduleRepository : IRepositoryWellRelated { /// /// получить бурильщика по idWell и времени /// /// /// /// /// Task GetOrDefaultDrillerAsync(int idWell, DateTime workTime, CancellationToken token); } }