public ActionResult Index(int SelectedNameCountOptionValue) { IndexViewModel ivm = new IndexViewModel(); Brutal b = new Brutal(); ivm.MetalName = b.generateBrutalName(SelectedNameCountOptionValue); return View(ivm); }
// GET: Home public ActionResult Index() { IndexViewModel ivm = new IndexViewModel(); return View(ivm); }