public async Task <IActionResult> DeleteJob(int id)
        {
            ServiceResponse <List <GetJobDto> > response = await _resumeService.DeleteJob(id);

            if (!response.Success)
            {
                return(NotFound(response));
            }
            return(Ok(response));
        }