public async Task <IActionResult> PutJob(UpdateJobDto updatedJob)
        {
            ServiceResponse <GetJobDto> response = await _resumeService.UpdateJob(updatedJob);

            if (response.Data == null)
            {
                return(NotFound(response));
            }
            return(Ok(response));
        }