コード例 #1
0
        internal void Update(TipoAnimales parent)
        {
            // if we're not dirty then don't update the database
            if (!this.IsDirty)
            {
                return;
            }

            try
            {
                ValidationRules.CheckRules();

                if (!IsValid)
                {
                    throw new iQValidationException(moleQule.Resources.Messages.GENERIC_VALIDATION_ERROR);
                }

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

            MarkOld();
        }
コード例 #2
0
        public virtual void CopyValues(TipoAnimalRecord source)
        {
            if (source == null)
            {
                return;
            }

            Oid    = source.Oid;
            _valor = source.Valor;
        }