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