예제 #1
0
 public GetAllTodosRequestHandler(
     IToDoStore store)
 {
     this.store = store;
 }
예제 #2
0
 public ToDoManager(IToDoStore toDoStore)
 {
     _toDoStore = toDoStore;
 }
예제 #3
0
 public SaveTodoRequestHandler(
     IToDoStore store)
 {
     this.store = store;
 }