Ejemplo n.º 1
0
        // GET: PoliceStation
        public IActionResult Index()
        {
            var thePoliceStations = mPoliceStationManagement.ListAll();

            return(View(thePoliceStations));
        }
Ejemplo n.º 2
0
        public ActionResult <IEnumerable <PoliceStationDto> > Get()
        {
            var thePoliceStations = mPoliceStationManagement.ListAll();

            return(thePoliceStations.ToList());
        }