示例#1
0
 public ToDoAdd(
     IToDoEntityDataStore toDoEntityDataStore)
 {
     _toDoEntityDataStore = toDoEntityDataStore;
 }
示例#2
0
 public ToDoGetById(
     IToDoEntityDataStore toDoEntityDataStore)
 {
     _toDoEntityDataStore = toDoEntityDataStore;
 }
示例#3
0
 public ToDoDeleteById(
     IToDoEntityDataStore toDoEntityDataStore)
 {
     _toDoEntityDataStore = toDoEntityDataStore;
 }
示例#4
0
 public ToDoUpdateById(
     IToDoEntityDataStore toDoEntityDataStore)
 {
     _toDoEntityDataStore = toDoEntityDataStore;
 }
示例#5
0
 public ToDoList(
     IToDoEntityDataStore toDoEntityDataStore)
 {
     _toDoEntityDataStore = toDoEntityDataStore;
 }