internal void CopyValues(IDataReader source) { if (source == null) { return; } _record.CopyValues(source); _importe = Format.DataReader.GetDecimal(source, "IMPORTE"); _codigo_factura = Format.DataReader.GetString(source, "CODIGO_FACTURA"); _codigo_albaran = Format.DataReader.GetString(source, "CODIGO_ALBARAN"); }
internal void Update(InputInvoice parent) { // if we're not dirty then don't update the database if (!this.IsDirty) { return; } try { SessionCode = parent.SessionCode; InputDeliveryInvoiceRecord obj = Session().Get <InputDeliveryInvoiceRecord>(Oid); obj.CopyValues(Base.Record); Session().Update(obj); } catch (Exception ex) { iQExceptionHandler.TreatException(ex); } MarkOld(); }