Esempio n. 1
0
 public ToDoAdd(
     IToDoEntityDataStore toDoEntityDataStore)
 {
     _toDoEntityDataStore = toDoEntityDataStore;
 }
Esempio n. 2
0
 public ToDoGetById(
     IToDoEntityDataStore toDoEntityDataStore)
 {
     _toDoEntityDataStore = toDoEntityDataStore;
 }
Esempio n. 3
0
 public ToDoDeleteById(
     IToDoEntityDataStore toDoEntityDataStore)
 {
     _toDoEntityDataStore = toDoEntityDataStore;
 }
Esempio n. 4
0
 public ToDoUpdateById(
     IToDoEntityDataStore toDoEntityDataStore)
 {
     _toDoEntityDataStore = toDoEntityDataStore;
 }
Esempio n. 5
0
 public ToDoList(
     IToDoEntityDataStore toDoEntityDataStore)
 {
     _toDoEntityDataStore = toDoEntityDataStore;
 }