Just a simple model
コード例 #1
0
 public void RemoveItem(Thing thing)
 {
     Data.Remove(thing);
 }
コード例 #2
0
 public void AddItem(Thing thing)
 {
     thing.Id = Data.Count + 1;
     Data.Add(thing);
 }