AutoMapperXmlDemo.Web.Controllers.HomeController.Index C# (CSharp) Метод

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

public Index ( ) : System.Web.Mvc.ActionResult
Результат System.Web.Mvc.ActionResult
        public ActionResult Index()
        {
            _twitterTimelineRetriever = new TwitterTimelineRetriever();

            ViewModel.Message = "Twitter Public Timeline";

            return View(_twitterTimelineRetriever.GetPublicTimeline(10));
        }
HomeController