コード例 #1
0
 public JobPostingsAPIController(ApplicationDbContext ctx, IMapper mapper, IJobPostingRepository JobPostingRepository,
                                 INLTKService NLTKService, IKeyPharseRepository KeyPharseRepository, ILogger <JobPostingsAPIController> logger)
 {
     _JobPostingRepository = JobPostingRepository;
     _nltkService          = NLTKService;
     _keyPharseRepository  = KeyPharseRepository;
     _mapper = mapper;
     _logger = logger;
     _ctx    = ctx;
 }
コード例 #2
0
 public SentimentGeneratorJob(IMapper mapper, ILogger <KeyPhraseGeneratorJob> logger,
                              INLTKService nltkService,
                              ApplicationDbContext ctx,
                              IConfiguration configuration)
 {
     _nltkService   = nltkService;
     _logger        = logger;
     _ctx           = ctx;
     _mapper        = mapper;
     _configuration = configuration;
 }
コード例 #3
0
 public JobPostingsController(
     IMapper mapper,
     IJobPostingRepository jobPostingRepository,
     INLTKService nltkService,
     IKeyPharseRepository keyPharseRepository)
 {
     _jobPostingRepository = jobPostingRepository;
     _nltkService          = nltkService;
     _keyPharseRepository  = keyPharseRepository;
     _mapper = mapper;
 }
コード例 #4
0
 public SummaryGeneratorJob(ILogger <KeyPhraseGeneratorJob> logger,
                            IJobPostingRepository jobPostingRepository,
                            INLTKService nltkService,
                            ApplicationDbContext ctx,
                            IConfiguration configuration)
 {
     _jobPostingRepository = jobPostingRepository;
     _nltkService          = nltkService;
     _logger        = logger;
     _ctx           = ctx;
     _configuration = configuration;
 }
コード例 #5
0
 public KeyPhraseGeneratorJob(ILogger <KeyPhraseGeneratorJob> logger,
                              IJobPostingRepository jobPostingRepository,
                              INLTKService NLTKService,
                              IKeyPharseRepository KeyPharseRepository,
                              ApplicationDbContext ctx,
                              IConfiguration configuration)
 {
     _jobPostingRepository = jobPostingRepository;
     _NLTKService          = NLTKService;
     _KeyPharseRepository  = KeyPharseRepository;
     _logger        = logger;
     _ctx           = ctx;
     _configuration = configuration;
 }
コード例 #6
0
 public OkRemoteJobByTags(INLTKService nltkService, ILogger <OkRemoteJob> logger, ApplicationDbContext ctx)
 {
     _ctx         = ctx;
     _logger      = logger;
     _nltkService = nltkService;
 }
コード例 #7
0
 public RemotiveIoDataJob(INLTKService nltkService, ILogger <OkRemoteJob> logger, ApplicationDbContext ctx)
 {
     _ctx         = ctx;
     _logger      = logger;
     _nltkService = nltkService;
 }