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

Delete() private method

private Delete ( int id ) : System.Web.Mvc.ActionResult
id int
return System.Web.Mvc.ActionResult
        public ActionResult Delete(int id)
        {
            HumanTask humantask = this.taskProcessor.GetTaskById(id);
            return this.View(humantask);
        }