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