public ActionResult Index() { var dict = _myRepo.GetIntStringDict(); var vm = new HomeViewModel() { Customer = _myRepo.GetCustomer() }; return(View(vm)); }
public Dictionary <int, string> GetIntStringDict() { return(_next.GetIntStringDict()); }