public MainController()
        {
            this.cryptographyController = new CryptographyController();

#if DEBUG
            this.path = Environment.CurrentDirectory.Substring(0, Environment.CurrentDirectory.Length - 10) + "\\resources\\";
#else
            this.path = Environment.CurrentDirectory + "\\resources\\";
#endif
            LoadFile();
        }
 public BaseController()
 {
     this.cryptographyController = new CryptographyController();
 }