Exemple #1
0
 public IndexModel(ITodoCatServices todoCatServices, ITodoListServices todoListServices,
                   ILogger <IndexModel> logger)
 {
     _todoCatServices  = todoCatServices;
     _todoListServices = todoListServices;
     _logger           = logger;
 }
Exemple #2
0
 public TodoCategoriesViewComponent(ITodoCatServices todoCatServices)
 {
     _todoCatServices = todoCatServices;
 }
 public TodoListViewComponent(ITodoListServices todoListServices, ITodoCatServices todoCatServices)
 {
     _todoListServices = todoListServices;
     _todoCatServices  = todoCatServices;
 }