The next generation of the Teknik Services. Written in ASP.NET.
https://www.teknik.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
756 B
25 lines
756 B
11 months ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.IO;
|
||
|
using Teknik.Configuration;
|
||
|
|
||
|
namespace StorageService
|
||
|
{
|
||
|
public abstract class StorageService : IStorageService
|
||
|
{
|
||
|
protected readonly StorageConfig _config;
|
||
|
|
||
|
public StorageService(StorageConfig config)
|
||
|
{
|
||
|
_config = config;
|
||
|
}
|
||
|
|
||
|
public abstract string GetUniqueFileName();
|
||
|
public abstract Stream GetFile(string fileName);
|
||
|
public abstract List<string> GetFileNames();
|
||
|
public abstract void SaveFile(string fileName, Stream file);
|
||
|
public abstract void SaveEncryptedFile(string fileName, Stream file, int chunkSize, byte[] key, byte[] iv);
|
||
|
public abstract void DeleteFile(string fileName);
|
||
|
}
|
||
|
}
|