12345678910111213 |
- using FileStorage;
- namespace FileHandlers
- {
- public interface IFwFileHandler
- {
- string Upload(string fileName,long length,string extraInfo, Stream fileData);
- Stream GetFileData(IFileStorage file);
- void DeleteFile(IFileStorage file);
- }
- }
|