Exemplo n.º 1
0
 public override void Changed()
 {
     _objects = null;
     if (this.Parent != null)
     {
         this.Parent.Changed();
     }
 }
Exemplo n.º 2
0
 public DTObjects GetObjects()
 {
     if (_objects == null)
     {
         _objects = DTOPool.CreateDTOjects(Items, this.IsPinned);
     }
     return(_objects);
 }