예제 #1
0
파일: ToDoAdd.cs 프로젝트: mattruma/MJR040
 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
파일: ToDoList.cs 프로젝트: mattruma/MJR040
 public ToDoList(
     IToDoEntityDataStore toDoEntityDataStore)
 {
     _toDoEntityDataStore = toDoEntityDataStore;
 }