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