コード例 #1
0
 public ToDoListsController(IToDoListServices toDoListServices)
 {
     _toDoListServices = toDoListServices;
 }
コード例 #2
0
 public ToDoListController(IJwtAuthenticationManager jwtAuthenticationManager, IToDoListServices services)
 {
     this.jwtAuthenticationManager = jwtAuthenticationManager;
     _services = services;
 }