예제 #1
0
        public bool Update()
        {
            JSellerTicketTable AT = new JSellerTicketTable();

            AT.SetValueProperty(this);
            return(AT.Update());
        }
예제 #2
0
        public int Insert(JDataBase db = null)
        {
            JSellerTicketTable AT = new JSellerTicketTable();

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