예제 #1
0
 public CreateJobCommandHandler(EasyJobsDbContext context, IMapper mapper)
 {
     _dbContext = context;
     _mapper    = mapper;
 }
예제 #2
0
 public GetTechnologiesQueryHandler(EasyJobsDbContext context, IMapper mapper)
 {
     _dbContext = context;
     _mapper    = mapper;
 }
예제 #3
0
 public GetUsersQueryHandler(EasyJobsDbContext context, IMapper mapper)
 {
     _dbContext = context;
     _mapper    = mapper;
 }
예제 #4
0
 public AuthService(EasyJobsDbContext dbContext, JwtFactory jwtFactory)
 {
     _dbContext  = dbContext;
     _jwtFactory = jwtFactory;
 }