public FilesEncryptorOption()
 {
     DummyConsole       = new FakeConsole();
     FileCreator        = new FileCreator();
     FileContentDisplay = new FileContentDisplay();
     EncoderFile        = new EncoderFile();
     WindowsNotebook    = new WindowsNotebook();
 }
 public FilesEncryptorOption(IFakeConsole DummyConsole, IFileCreator FileCreator,
                             IFileContentDisplay FileContentDisplay,
                             IEncoderFile EncoderFile,
                             IWindowsNotebook WindowsNotebook)
 {
     this.DummyConsole       = DummyConsole;
     this.FileCreator        = FileCreator;
     this.FileContentDisplay = FileContentDisplay;
     this.EncoderFile        = EncoderFile;
     this.WindowsNotebook    = WindowsNotebook;
 }