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