示例#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;
 }