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

Delete() public method

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