Beispiel #1
0
        public IActionResult Index()
        {
            HomePageModel model = new HomePageModel(exhibitionService.GetAllExhibitions().ToList(),
                                                    hRService.GetAllPlaces().ToList(),
                                                    currentExhibitionService.GetAllCurrentExhibitions().ToList());

            return(View(model));
        }