DD.WellWorkover.Cloud/AsbCloudApp/Services/IScheduleService.cs

14 lines
352 B
C#
Raw Normal View History

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-25 20:19:08 +05:00
Task<DrillerDto> GetSchedule(int idWell,DateTimeOffset workTime, CancellationToken token = default);
}
}