Esempio n. 1
0
        public IActionResult Index()
        {
            var            repo = new SimchaRepository(_connectionString);
            IndexViewModel vm   = new IndexViewModel();

            vm.Simchas      = repo.GetSimchas();
            vm.Contributors = repo.GetContributorCount();
            return(View(vm));
        }