internal void Update(Instructor parent)
        {
            // if we're not dirty then don't update the database
            if (!this.IsDirty)
            {
                return;
            }

            OidProfesor = parent.Oid;

            try
            {
                ValidationRules.CheckRules();

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

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

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

            Oid           = source.Oid;
            _oid_curso    = source.OidCurso;
            _oid_profesor = source.OidProfesor;
        }