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