public BoardsController(TrelloCloneContext context)
 {
     _context = context;
 }
Beispiel #2
0
 public ItemsController(TrelloCloneContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Beispiel #3
0
 public TaskListController(TrelloCloneContext context)
 {
     _context = context;
 }