public bool Delete() { JSellerTicketOwnerTable AT = new JSellerTicketOwnerTable(); AT.SetValueProperty(this); return(AT.Delete()); }
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); }