BinaryStudio.TaskManager.Web.Controllers.ProjectController.Details C# (CSharp) Méthode

Details() public méthode

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