Ejemplo n.º 1
0
 public void Update(Todoitem item)
 {
     _todos[item.Key] = item;
 }
Ejemplo n.º 2
0
 public void Add(Todoitem item)
 {
     item.Key         = Guid.NewGuid().ToString();
     _todos[item.Key] = item;
 }