예제 #1
0
 public ToDoItemUserService()
 {
     toDoItemUserDbService = new DAL.Services.ToDoItemUserService(apiSettings.ConnectionString);
 }
예제 #2
0
 public ToDoItemController(IToDoItemService _toDoItemService, IToDoItemStatusService _toDoItemStatusService, IToDoItemUserService _toDoItemUserService)
 {
     toDoItemService       = _toDoItemService;
     toDoItemStatusService = _toDoItemStatusService;
     toDoItemUserService   = _toDoItemUserService;
 }