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

14 lines
400 B
C#

using AsbCloudApp.Data;
using System;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
namespace AsbCloudApp.Services
{
public interface IDrillFlowChartService : ICrudWellRelatedService<DrillFlowChartDto>
{
Task<IEnumerable<DrillFlowChartDto>> GetAllAsync(int idWell,
DateTime updateFrom, CancellationToken token = default);
}
}