DD.WellWorkover.Cloud/AsbCloudApp/Services/IWellReportService.cs
2024-08-23 16:43:09 +05:00

10 lines
233 B
C#

using System.Threading;
using System.Threading.Tasks;
using AsbCloudApp.Data.WellReport;
namespace AsbCloudApp.Services;
public interface IWellReportService
{
Task<WellReportDto> GetAsync(int idWell, CancellationToken token);
}