Example #1
0
        internal void CopyValues(IDataReader source)
        {
            if (source == null)
            {
                return;
            }

            _record.CopyValues(source);

            _familia = Format.DataReader.GetString(source, "FAMILIA");
        }
Example #2
0
        internal void Update(Serie parent)
        {
            // if we're not dirty then don't update the database
            if (!this.IsDirty)
            {
                return;
            }

            OidSerie = parent.Oid;

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

            MarkOld();
        }