public ActionResult <List <RestauranteDTO> > Get() { var restaurantes = _restauranteService.ObtenerRestaurantes(); var model = new List <RestauranteDTO>(); _mapper.Map(restaurantes, model); return(model); }
public IActionResult Index() { var restaurantes = _restauranteService.ObtenerRestaurantes(); return(View(restaurantes)); }