forked from ddrilling/AsbCloudServer
14 lines
391 B
C#
14 lines
391 B
C#
using AsbCloudApp.Data;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AsbCloudApp.Services
|
|
{
|
|
public interface IScheduleService : ICrudService<ScheduleDto>
|
|
{
|
|
Task<IEnumerable<ScheduleDto>> GetSchedule(int idWell,DateTimeOffset dateStart, DateTimeOffset dateEnd, CancellationToken token = default);
|
|
}
|
|
}
|