2024-05-24 16:18:56 +03:30
|
|
|
|
namespace Netina.Core.Abstracts;
|
2024-01-30 02:33:24 +03:30
|
|
|
|
|
|
|
|
|
|
public interface IStorageService : IScopedDependency
|
|
|
|
|
|
{
|
2024-04-10 20:52:32 +03:30
|
|
|
|
Task<string> UploadObjectFromFileAsync(string fileName, string filePath, string contentType, byte[] fileBytes, bool fixName = true);
|
2024-02-10 14:00:31 +03:30
|
|
|
|
Task<string> UploadObjectFromFileAsync(string fileName, string filePath, string contentType, Stream fileStream, bool fixName = true);
|
2024-01-30 02:33:24 +03:30
|
|
|
|
|
|
|
|
|
|
Task<List<StorageFileSDto>> GetStorageFiles(StorageFileType fileType);
|
|
|
|
|
|
}
|