Badges.Areas.Admin.Controllers.TitleController.Index C# (CSharp) Method

Index() public method

public Index ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult
        public ActionResult Index()
        {
            var titleList = RepositoryFactory.TitleRepository.Queryable;

            return View(titleList.ToList());
        }