forked from ddrilling/AsbCloudServer
11 lines
256 B
C#
11 lines
256 B
C#
|
using AsbCloudApp.Data;
|
|||
|
using System.Threading;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace AsbCloudApp.Services
|
|||
|
{
|
|||
|
public interface IDrillingProgramService
|
|||
|
{
|
|||
|
Task<FileInfoDto> GetAsync(int idWell, CancellationToken token = default);
|
|||
|
}
|
|||
|
}
|