コード例 #1
0
ファイル: TaskService.php プロジェクト: withoutlogin/todo-ddd
 public function changeTask(TaskTO $oTask)
 {
     $oRepository = new TaskListRepository();
     return $oRepository->Update($oList);
 }
コード例 #2
0
 public function changeList(ListTO $oList)
 {
     $oRepository = new TaskListRepository();
     return $oRepository->Update($oList);
 }