Exemplo n.º 1
0
 public async Task <ActionResult <IEnumerable <GeolocationDataResource> > > GetAll()
 {
     return(Ok((await _geolocationService.GetAllAsync()).Select(x => _geolocationDataConverter.Convert(x))));
 }