BootstrapMVC.Controllers.HomeController.Index C# (CSharp) Method

Index() public method

public Index ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult
        public ActionResult Index()
        {
            HoneyBadgerSvc service = new HoneyBadgerSvc();
            HomeLookupViewModel model = new HomeLookupViewModel();
            model.IncidentYears = service.LoadIncidentYears();
            model.IncidentTypes = service.LoadIncidentTypes();
            return View(model);
        }