public DeleteJobOfferCommandHandler(IReqruitingSystemDbContext context)
 {
     _context = context;
 }
 public GetCandidateDetailQueryHandler(IReqruitingSystemDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public CreateCandidateCommandHandler(IReqruitingSystemDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
예제 #4
0
 public UpdateJobOfferCommandHandler(IReqruitingSystemDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
 public GetRecruiterListQueryHandler(IReqruitingSystemDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
예제 #6
0
 public DeleteCandidateCommandHandler(IReqruitingSystemDbContext context)
 {
     _context = context;
 }