private void LogOutButton_Click(object sender, RoutedEventArgs e)
        {
            AuthorizationWindow authWin = new AuthorizationWindow();

            Close();
            authWin.Show();
        }
        private void LogOutButton_Click(object sender, RoutedEventArgs e)
        {
            UserInfo.DisconnetcUser();
            AuthorizationWindow authWin = new AuthorizationWindow();

            Close();
            authWin.ShowDialog();
        }