19 lines
725 B
C#
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);
|
|
//}
|
|
}
|