public DeleteLinkCommandHandler(ISyriatechDbContext context)
 {
     _context = context;
 }
Exemple #2
0
 public GetProjectQueryHandler(ISyriatechDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemple #3
0
 public GetAllEventsQueryHandler(ISyriatechDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public UpdateProjectCommandHandler(ISyriatechDbContext context)
 {
     _context = context;
 }
 public UpdateEventCommandHandler(ISyriatechDbContext context)
 {
     _context = context;
 }