public async Task <IEnumerable <JobOfferDto> > GetByCompanyIdAsync(int companyId, bool ascendingOrder = true) { return(mapper.Map <IEnumerable <JobOffer>, IEnumerable <JobOfferDto> >(await jobOfferService.GetByCompanyIdAsync(companyId, ascendingOrder))); }