public void Insert(aers_tbl_LoginKey model)
        {
            model.LKId = new aers_sys_seedSqlMapDao().GetMaxID("aers_tbl_LoginKey");
            String stmtId = "aers_tbl_LoginKey_Insert"; // Message_Insert

            ExecuteInsert(stmtId, model);
        }
        public aers_tbl_LoginKey FindLoginKeyByReuId(string ReguserId)
        {
            String    stmtId = "aers_tbl_LoginKey_FindLoginKeyByReuId";
            Hashtable ht     = new Hashtable();

            ht.Add("ReguserId", ReguserId);
            aers_tbl_LoginKey result = ExecuteQueryForObject <aers_tbl_LoginKey>(stmtId, ht);

            return(result);
        }
        public void Update(aers_tbl_LoginKey model)
        {
            String stmtId = "aers_tbl_LoginKey_Update";

            ExecuteUpdate(stmtId, model);
        }