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

16 lines
441 B
C#
Raw Normal View History

2021-08-10 14:35:49 +05:00
using AsbCloudApp.Data;
using System.Collections.Generic;
2021-08-10 14:35:49 +05:00
using System.Threading;
using System.Threading.Tasks;
namespace AsbCloudApp.Services
{
2021-08-10 16:37:36 +05:00
public interface IWellSectionService
2021-08-10 14:35:49 +05:00
{
Task<IEnumerable<WellSectionDto>> GetSectionsByWellIdAsync(int idWell,
CancellationToken token = default);
Task<WellSectionDto> GetSectionByWellIdAsync(int id,
CancellationToken token = default);
2021-08-10 14:35:49 +05:00
}
}