Ejemplo n.º 1
0
 protected void LoadSent(List <string> db)
 {
     if (db == null)
     {
         return;
     }
     Sents.Clear();
     db.ForEach(x => Sents.Add(GetEntity <TUnit>(x)));
 }
Ejemplo n.º 2
0
 public void AddSent(TUnit other)
 {
     Sents.Add(other);
 }