示例#1
0
 public ORGPOSITION getIdParentPosition()
 {
     if ((!this.isPersisting()) && (m_idParentPosition != null))
     {
         m_idParentPosition = (ORGPOSITION)getPersistenceManager().find(m_idParentPosition.getClassName(), m_idParentPosition.getId());
     }
     return(m_idParentPosition);
 }
示例#2
0
        protected override void  cloneValues(object target, Hashtable reentrance)
        {
            ORGPOSITION tg = (ORGPOSITION)target;

            cloneBaseValues(tg);
            tg.m_posName          = this.m_posName;
            tg.m_idParentPosition = (ORGPOSITION)cloneRelation(this.m_idParentPosition);
            tg.m_posDisplayName   = this.m_posDisplayName;
            tg.m_posDescription   = this.m_posDescription;
            tg.m_costPosition     = this.m_costPosition;
            tg.m_idOrg            = (ORG)cloneRelation(this.m_idOrg);
        }
示例#3
0
 public void setIdParentPosition(ORGPOSITION paramidParentPosition)
 {
     this.m_idParentPosition = paramidParentPosition;
 }