public ActionResult Index()
        {
            var dict = _myRepo.GetIntStringDict();

            var vm = new HomeViewModel()
            {
                Customer = _myRepo.GetCustomer()
            };

            return(View(vm));
        }
Exemple #2
0
 public Dictionary <int, string> GetIntStringDict()
 {
     return(_next.GetIntStringDict());
 }