示例#1
0
 public JobController(JobRepository jobRepository, RequestJobRepository requestJobRepository, JobService jobService, JWTService jWTService, LevenshteinService levenshteinService, IBackgroundQueue <AddJob> queue, DanhSachDNJobRepository danhSachDNJobRepository, CacheService cacheService)
 {
     this.jobRepository        = jobRepository;
     this.requestJobRepository = requestJobRepository;
     this.jobService           = jobService;
     this.jWTService           = jWTService;
     this.levenshteinService   = levenshteinService;
     this.queue = queue;
     this.danhSachDNJobRepository = danhSachDNJobRepository;
     this.cacheService            = cacheService;
 }
示例#2
0
 public AdminController(DanhSachDNJobRepository danhSachDNJobRepository, DoanhNghiepRepository doanhNghiepRepository, JobService jobService)
 {
     this.danhSachDNJobRepository = danhSachDNJobRepository;
     this.doanhNghiepRepository   = doanhNghiepRepository;
     this.jobService = jobService;
 }