BinaryStudio.TaskManager.Web.Controllers.HumanTasksController.Index C# (CSharp) Method

Index() private method

private Index ( ) : System.Web.Mvc.ViewResult
return System.Web.Mvc.ViewResult
        public ViewResult Index()
        {
            var humanTasks = this.taskProcessor.GetAllTasks();
            return this.View(humanTasks);
        }