forked from ddrilling/AsbCloudServer
10 lines
233 B
C#
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);
|
|
} |