2022-05-22 21:18:43 +05:00
|
|
|
|
using AsbCloudApp.Data;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Services
|
|
|
|
|
{
|
|
|
|
|
public interface IScheduleService : ICrudService<ScheduleDto>
|
|
|
|
|
{
|
2022-05-26 15:32:23 +05:00
|
|
|
|
Task<IEnumerable<ScheduleDto>> GetByIdWellAsync(int idWell, CancellationToken token = default);
|
2022-05-26 13:28:16 +05:00
|
|
|
|
Task<DrillerDto> GetDrillerAsync(int idWell, DateTime workTime, CancellationToken token = default);
|
2022-05-22 21:18:43 +05:00
|
|
|
|
}
|
|
|
|
|
}
|