forked from ddrilling/AsbCloudServer
15 lines
623 B
C#
15 lines
623 B
C#
using AsbCloudApp.Data;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AsbCloudApp.Services
|
|
{
|
|
public interface IDrillingProgramService
|
|
{
|
|
Task<int> CreateFileMarkAsync(FileMarkDto fileMarkDto, int idUser, CancellationToken token);
|
|
Task<FileInfoDto> GetOrCreateAsync(int idWell, int fileChangerId,
|
|
CancellationToken token = default);
|
|
Task<string> GetOrCreateSharedUrlAsync(int idWell, int idUser, IFileShareService fileShareService, CancellationToken token = default);
|
|
Task<int> MarkFileMarkAsDeletedAsync(int idMark, CancellationToken token);
|
|
}
|
|
} |