Exemplo n.º 1
0
        public bool Update()
        {
            JSellerTicketTable AT = new JSellerTicketTable();

            AT.SetValueProperty(this);
            return(AT.Update());
        }
Exemplo n.º 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);
        }