BinaryStudio.TaskManager.Web.Controllers.ProjectController.Details C# (CSharp) Method

Details() public method

The details.
public Details ( int id, bool viewStyle ) : System.Web.Mvc.ActionResult
id int /// The id. ///
viewStyle bool /// The view Style. ///
return System.Web.Mvc.ActionResult
        public ActionResult Details(int id, bool? viewStyle)
        {
            var model = this.CreateSingleTaskViewModelById(id, viewStyle);            
            return this.View(model);
        }