// GET: Home public ActionResult Index() { var telephoneBook = new TelephoneBook(); ViewBag.Contacts = telephoneBook.GetContacts(); return(View()); }
public ActionResult Search(string ln) { var telephoneBook = new TelephoneBook(); if (string.IsNullOrEmpty(ln)) { ViewBag.Contacts = telephoneBook.GetContacts(); } else { ViewBag.Contacts = telephoneBook.GetContactsByLastName(ln); } return(View()); }