예제 #1
0
 public ToDoTitleManager(IToDoTitleDal toDoTitleDal, IMapper mapper, IUserDal userDal)
 {
     _mapper       = mapper;
     _toDoTitleDal = toDoTitleDal;
     _userDal      = userDal;
 }
 public ToDoController(IToDoTitleService toDoTitleService, IToDoItemService toDoItemService, IToDoTitleDal toDoTitleDal)
 {
     _toDoTitleService = toDoTitleService;
     _toDoItemService  = toDoItemService;
     _toDoTitleDal     = toDoTitleDal;
 }