// КОНСТРУКТОР ==================================================================================================
        public Authorization(ContentControl CurrentUserInterfaceParent)
        {
            this.CurrentUserInterfaceParent = CurrentUserInterfaceParent;

            InitializeComponent();

            LockInterface = LockInterfaceMethod;
            Loaded       += Authorization_Loaded;
        }
        public Administrator(string CurrentUserName, string CurrentConnectionName, string CurrentCryptConnectionString, LockInterfaceDelegate LockInterface)
        {
            this.CurrentUserName              = CurrentUserName;
            this.CurrentConnectionName        = CurrentConnectionName;
            this.CurrentCryptConnectionString = CurrentCryptConnectionString;
            this.LockInterface = LockInterface;

            InitializeComponent();
        }