master
1using Notepad.Domain.FileSystem;
2using Notepad.Infrastructure.Extensions;
3
4namespace Notepad.Tasks.Stubs {
5 public class StubDocumentTasks : IDocumentTasks {
6 public void SaveActiveDocumentTo(IFilePath pathToSaveTheActiveDocumentTo) {
7 pathToSaveTheActiveDocumentTo
8 .LogInformational("Save document to {0}", pathToSaveTheActiveDocumentTo.RawPathToFile());
9 }
10
11 public bool HasAPathToSaveToBeenSpecified() {
12 return false;
13 }
14
15 public void SaveTheActiveDocument() {
16 this.LogInformational("Save the active document please...");
17 }
18 }
19}