AccountProfile.Controllers.ProfileController.Index C# (CSharp) Method

Index() public method

public Index ( ) : System.Web.Mvc.ViewResult
return System.Web.Mvc.ViewResult
        public ViewResult Index()
        {
            var profiles = _profileRepository.GetAll();
            return View(profiles);
        }