2022-04-11 18:00:34 +05:00
|
|
|
using AsbCloudApp.Data;
|
2021-10-14 10:18:43 +05:00
|
|
|
using System;
|
2021-10-13 17:34:32 +05:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Threading;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
namespace AsbCloudApp.Services
|
|
|
|
{
|
2022-06-09 11:19:52 +05:00
|
|
|
public interface IDrillFlowChartService : ICrudWellRelatedService<DrillFlowChartDto>
|
2021-10-13 17:34:32 +05:00
|
|
|
{
|
2021-10-14 10:18:43 +05:00
|
|
|
Task<IEnumerable<DrillFlowChartDto>> GetAllAsync(int idWell,
|
|
|
|
DateTime updateFrom, CancellationToken token = default);
|
2021-10-13 17:34:32 +05:00
|
|
|
}
|
|
|
|
}
|