示例#1
0
        public IActionResult Index()
        {
            var model = new WhiskeyIndexViewModel();

            model.Whiskies = _whiskeyData.GetAll();

            return(View(model));
        }