Exemple #1
0
        public void GetPois()
        {
            var pois = _poiRepository.GetPois();

            foreach (var i in pois)
            {
                Console.WriteLine(i);
            }
        }
Exemple #2
0
 public ActionResult<List<Poi>> Get(int cityId)
 {
     return _repository.GetPois();
 }