Exemple #1
0
 public JobTagsApiController(IJobTagService jobTagService)
 {
     _jobTagService = jobTagService;
 }
Exemple #2
0
 public JobPostsController(IJobPostService jobPostService, IJobTagService jobTagService, IEmployerService employerService)
 {
     this.jobPostService  = jobPostService;
     this.jobTagService   = jobTagService;
     this.employerService = employerService;
 }