Ejemplo n.º 1
0
 public async Task <IEnumerable <JobOfferDto> > GetByCityAsync(string city, bool ascendingOrder = true)
 {
     return(mapper.Map <IEnumerable <JobOffer>, IEnumerable <JobOfferDto> >(await jobOfferService.GetByCityAsync(city, ascendingOrder)));
 }