public ActionResult Index() { var model = new StateUnitedIndexViewModel(); model.StateUniteds = _stateunitedRepository.GetAll(); return(View(model)); }
public ActionResult IndexAjax() { var model = new StateUnitedIndexViewModel(); return(View(model)); }