Just a simple model
Ejemplo n.º 1
0
 public void RemoveItem(Thing thing)
 {
     Data.Remove(thing);
 }
Ejemplo n.º 2
0
 public void AddItem(Thing thing)
 {
     thing.Id = Data.Count + 1;
     Data.Add(thing);
 }