IFwFileHandler.cs 277 B

12345678910111213
  1. using FileStorage;
  2. namespace FileHandlers
  3. {
  4. public interface IFwFileHandler
  5. {
  6. string Upload(string fileName,long length,string extraInfo, Stream fileData);
  7. Stream GetFileData(IFileStorage file);
  8. void DeleteFile(IFileStorage file);
  9. }
  10. }