Example #1
0
        public override object  Clone(string sNodeName)
        {
            OrgPositions Col = new  OrgPositions();

            foreach (OrgPosition objMember in this)
            {
                Col.Add((OrgPosition)objMember.Clone(sNodeName));
            }
            return(Col);
        }
Example #2
0
        public override void Initialize()
        {
            base.Initialize();
            this._UnitPath         = "";
            this._ExpireDate       = "";
            this._BuildingLocation = new OrgUnitBuildingLocation();
            this._ChildUnits       = new OrgUnits();
            this._ParentUnit       = new OrgUnit();
            this._Positions        = new OrgPositions();
            this._IsExpire         = SbnBoolean.OutOfValue;
            this._IsInternal       = SbnBoolean.OutOfValue;
            this._IsDargah         = SbnBoolean.OutOfValue;

            this._MergedUnit = new OrgUnit();
        }