public virtual void CopyValues(DeliveryTicketRecord source)
        {
            if (source == null)
            {
                return;
            }

            Oid               = source.Oid;
            _oid_albaran      = source.OidAlbaran;
            _oid_ticket       = source.OidTicket;
            _fecha_asignacion = source.FechaAsignacion;
        }
        internal void Update(Ticket parent)
        {
            // if we're not dirty then don't update the database
            if (!this.IsDirty)
            {
                return;
            }

            try
            {
                SessionCode = parent.SessionCode;
                DeliveryTicketRecord obj = Session().Get <DeliveryTicketRecord>(Oid);
                obj.CopyValues(Base.Record);
                Session().Update(obj);
            }
            catch (Exception ex)
            {
                iQExceptionHandler.TreatException(ex);
            }

            MarkOld();
        }