Method | Description | |
---|---|---|
Create ( int projectId ) : System.Web.Mvc.ActionResult | ||
Delete ( int id ) : System.Web.Mvc.ActionResult | ||
Details ( int id ) : System.Web.Mvc.ActionResult | ||
Edit ( int id ) : System.Web.Mvc.ActionResult | ||
Index ( int projectId ) : System.Web.Mvc.ActionResult |
View list of tasks for project
|
|
LoadRequirements ( int projectId, int categoryId ) : JsonNetResult |
Loads a list of requirements in a category
|
|
MyTasks ( ) : System.Web.Mvc.ActionResult |
View a list of tasks assigned to user
|
|
TaskController ( IRepository |
||
UpdateTask ( int id, string description, string comments, bool complete = false ) : JsonNetResult |
Worker's interface to update the task, can make comments and mark complete
|
Method | Description | |
---|---|---|
Create ( int projectId, Task task, List |
||
Delete ( int id, Task task ) : System.Web.Mvc.ActionResult | ||
Edit ( int id, Task task, List |
||
TransferValues ( Task src, Task dest, List |
public Create ( int projectId ) : System.Web.Mvc.ActionResult | ||
projectId | int | |
return | System.Web.Mvc.ActionResult |
public Delete ( int id ) : System.Web.Mvc.ActionResult | ||
id | int | |
return | System.Web.Mvc.ActionResult |
public Details ( int id ) : System.Web.Mvc.ActionResult | ||
id | int | |
return | System.Web.Mvc.ActionResult |
public Edit ( int id ) : System.Web.Mvc.ActionResult | ||
id | int | |
return | System.Web.Mvc.ActionResult |
public Index ( int projectId ) : System.Web.Mvc.ActionResult | ||
projectId | int | |
return | System.Web.Mvc.ActionResult |
public LoadRequirements ( int projectId, int categoryId ) : JsonNetResult | ||
projectId | int | Project Id |
categoryId | int | Category Id |
return | JsonNetResult |
public MyTasks ( ) : System.Web.Mvc.ActionResult | ||
return | System.Web.Mvc.ActionResult |
public TaskController ( IRepository |
||
taskRepository | IRepository |
|
projectRepository | IRepository |
|
accessValidator | IAccessValidatorService | |
return | System |
public UpdateTask ( int id, string description, string comments, bool complete = false ) : JsonNetResult | ||
id | int | |
description | string | |
comments | string | |
complete | bool | |
return | JsonNetResult |