Exemplo n.º 1
0
 public override void Initialize()
 {
     base.Initialize();
     this._BuildingPath   = "";
     this._OrgUnits       = new OrgUnits();
     this._ParentLocation = new OrgUnitBuildingLocation();
     this._ChildLocations = new OrgUnitBuildingLocations();
 }
Exemplo n.º 2
0
        public override object  Clone(string sNodeName)
        {
            OrgUnits Col = new  OrgUnits();

            foreach (OrgUnit objMember in this)
            {
                Col.Add((OrgUnit)objMember.Clone(sNodeName));
            }
            return(Col);
        }
Exemplo n.º 3
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();
        }