Exemple #1
0
        public bool Delete()
        {
            BusEventRegisterTable AT = new BusEventRegisterTable();

            AT.IsView = true;
            AT.SetValueProperty(this);
            return(AT.Delete());
        }
Exemple #2
0
        public int Insert(JDataBase db = null)
        {
            if (db == null)
            {
                db = new JDataBase();
            }
            BusEventRegisterTable AT = new BusEventRegisterTable();

            AT.IsView = true;
            AT.SetValueProperty(this);

            Code = AT.Insert(0, db, true);

            return(Code);
        }