public async Task <ActionResult <ICollection <JobCategoryDto> > > Index() { return(Ok(await _repository.Get())); }
public JobCategoryDto GetJobCategory(GetJobCategoryInput input) { return(Mapper.Map <JobCategoryDto>(_jobCategoryRepository.Get(input.CategoryId))); }