Ejemplo n.º 1
0
        public bool Delete()
        {
            JSellerTicketOwnerTable AT = new JSellerTicketOwnerTable();

            AT.SetValueProperty(this);
            return(AT.Delete());
        }
Ejemplo n.º 2
0
        public int Insert(JDataBase db = null)
        {
            JSellerTicketOwnerTable AT = new JSellerTicketOwnerTable();

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