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

10 lines
233 B
C#
Raw Normal View History

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