Files
BeWoPlaner/Shared/Interface/IFileStorageDAO.cs
2025-06-03 12:24:30 +02:00

19 lines
725 B
C#

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace BS.Shared.Interface
{
//public interface IFileStorageDAO
//{
// Task<IStoredFile> SaveFileAsync(BWPFeature feature, string fileName, Stream content, CancellationToken cancellationToken = default);
// Task<Stream> GetFileAsync(BWPFeature feature, string fileName, CancellationToken cancellationToken = default);
// Task<bool> DeleteFileAsync(BWPFeature feature, string fileName, CancellationToken cancellationToken = default);
// Task<bool> FileExistsAsync(BWPFeature feature, string fileName, CancellationToken cancellationToken = default);
//}
}