public GetListTitleTasksQueryHandler(ITasksManagerDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Esempio n. 2
0
 public GetTaskQueryHandler(IMapper mapper, ITasksManagerDbContext context)
 {
     _mapper  = mapper;
     _context = context;
 }
Esempio n. 3
0
 public ChangeStatusTaskCommandHandler(ITasksManagerDbContext context) =>
Esempio n. 4
0
 public CreateTaskCommandHandler(ITasksManagerDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public DeleteTaskCommandHandler(ITasksManagerDbContext context) =>