using System.Collections.Generic; using System.Web.Mvc; using ContactManager.Models; namespace ContactManager.Controllers { public class GroupController : Controller { public ActionResult Index() { var groups = new List(); return View(groups); } } }