public Task <IFile> SaveChangesAsync() { IFile f = NullFile.Create(_path); return(Task.FromResult(f)); }
public IFile SaveChanges() { return(NullFile.Create(_path)); }
public Task <IFile> CreateFileAsync(string path, Stream streamInput) { return(Task.FromResult(NullFile.Create(path))); }
public Task <IFile> GetFileAsync(string path) { return(Task.FromResult(NullFile.Create(path))); }
public Task <IFile> CopyFromAsync(IFile file, string targetPath) { return(Task.FromResult(NullFile.Create(targetPath))); }