App.Core.Controllers.PostsController.New C# (CSharp) Method

New() public method

public New ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult
        public ActionResult New()
        {
            ViewBag.Authors = repository.FindAll<Account>();
            return View(new Post());
        }