Ejemplo n.º 1
0
 public CreateItemModel(ITodoListItemService todoListItemService, ITodoListService todoListService)
 {
     _todoListItemService = todoListItemService;
     _todoListService     = todoListService;
 }
Ejemplo n.º 2
0
 public TodoListModel(ITodoListItemService todoListItemService, ITodoListService todoListService)
 {
     _todoListItemService = todoListItemService;
     _todoListService     = todoListService;
 }
 public DeleteItemModel(ITodoListItemService todoListItemService)
 {
     _todoListItemService = todoListItemService;
 }