Esempio n. 1
0
 void IIndice.SetParentAndId(IIndice parent, dynamic id)
 {
     if (_my.Parent == null)
     {
         _my.Parent = parent;
         _my.Id     = id;
     }
 }
Esempio n. 2
0
 public Indice()
 {
     _my      = this;
     _indices = new ConcurrentDictionary <TKey, TData>();
 }
Esempio n. 3
0
 public IndiceStore()
 {
     _my      = this;
     _indices = new List <TData>();
 }