public IActionResult GetJob(int jobId) { Job job = SkillFactory.GetJob(jobId); if (job == null) { return(NotFound()); } return(Json(job)); }