public static bool GetUserAccount(string Username, string Password)
        {
            string UsernameDB    = ADDB.GetUserAccount(Username);
            string UsernameMerge = Username + Password;

            if (UsernameDB.Equals(UsernameMerge))
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }