示例#1
0
        public bool Delete()
        {
            BusEventPalceTable AT = new BusEventPalceTable();

            AT.SetValueProperty(this);
            return(AT.Delete());
        }
示例#2
0
        public int Insert(JDataBase db = null)
        {
            BusEventPalceTable AT = new BusEventPalceTable();

            AT.SetValueProperty(this);
            if (db == null)
            {
                Code = AT.Insert();
            }
            else
            {
                Code = AT.Insert(db);
            }

            return(Code);
        }