コード例 #1
0
 public TodoDataServices(TodoListingDbContext dbContext)
 {
     _dbContext = dbContext;
 }
コード例 #2
0
ファイル: TodoController.cs プロジェクト: asaklex/TodoListing
 public TodoController(TodoListingDbContext todoListingDbContext, ITodoDataServices todoDataServices)
 {
     _todoListingDbContext = todoListingDbContext;
     _todoDataServices     = todoDataServices;
 }