コード例 #1
0
 public TodoListModel(Services.ITodoListAppService todoListAppService, Services.ITodoListItemAppService todoListItemAppService)
 {
     _todoListAppService     = todoListAppService;
     _todoListItemAppService = todoListItemAppService;
 }
コード例 #2
0
 public IndexModel(Services.ITodoListAppService todoListAppService, ICurrentUser currentUser)
 {
     _TodoListAppService = todoListAppService;
     _CurrentUser        = currentUser;
 }