Exemple #1
0
    public static bool check_is_user(string id)
    {
        bool         boolean     = false;
        database     Database    = new database();
        current_user CurrentUser = new current_user(id);

        Database.open_connection();
        boolean = CurrentUser.function_registration_check(Database);
        Database.close_connection();
        return(boolean);
    }
Exemple #2
0
        public bool initialization_login(string id, string type)
        {
            bool         boolean     = false;
            current_user CurrentUser = new current_user(id);
            database     Database    = new database();

            Database.open_connection();
            if (type == "login")
            {
                boolean = CurrentUser.function_registration_check(Database);
            }
            Database.close_connection();
            return(boolean);
        }
Exemple #3
0
        public bool check_is_user_and_connected(string id)
        {
            bool     boolean    = false;
            database _database_ = new database();

            _database_.open_connection();
            current_user CurrentUser        = new current_user(id);
            bool         registration_check = false;

            registration_check = CurrentUser.function_registration_check(_database_);
            bool authorization_check = false;

            authorization_check = CurrentUser.function_authorization_check(_database_);
            if (registration_check == true && authorization_check == true)
            {
                boolean = true;
            }
            else
            {
                boolean = false;
            }
            _database_.close_connection();
            return(boolean);
        }