AreasExample.Areas.Admin.Controllers.ProfileController.Index C# (CSharp) Метод

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

public Index ( ) : System.Web.Mvc.ActionResult
Результат System.Web.Mvc.ActionResult
        public virtual ActionResult Index()
        {
            var profiles = _profileRepository.GetAll();

            return View(profiles);
        }