コード例 #1
0
ファイル: Index.cshtml.cs プロジェクト: trannhutle/TodoApp
 public IndexModel(ITodoCatServices todoCatServices, ITodoListServices todoListServices,
                   ILogger <IndexModel> logger)
 {
     _todoCatServices  = todoCatServices;
     _todoListServices = todoListServices;
     _logger           = logger;
 }
コード例 #2
0
 public TodoCategoriesViewComponent(ITodoCatServices todoCatServices)
 {
     _todoCatServices = todoCatServices;
 }
コード例 #3
0
 public TodoListViewComponent(ITodoListServices todoListServices, ITodoCatServices todoCatServices)
 {
     _todoListServices = todoListServices;
     _todoCatServices  = todoCatServices;
 }