Application.Web.Controllers.LaptopsAdministrationController.Index C# (CSharp) Метод

Index() публичный Метод

public Index ( ) : System.Web.Mvc.ActionResult
Результат System.Web.Mvc.ActionResult
        public ActionResult Index()
        {
            var laptops = db.Laptops.Include(l => l.Manufacturer);
            return View(laptops.ToList());
        }