master
1using Notepad.Domain.FileSystem;
2
3namespace Notepad.Tasks {
4    public interface IDocumentTasks {
5        void SaveActiveDocumentTo(IFilePath pathToSaveTheActiveDocumentTo);
6        bool HasAPathToSaveToBeenSpecified();
7        void SaveTheActiveDocument();
8    }
9}