public async Task <string> UpdateJobTitle(int id, JobTitle jobTitle) { try { var res = await _repository.UpdateJobTitles(id, jobTitle); return(res); } catch (Exception ex) { throw ex; } }