14 | @Html.ActionLink("Help Page Home", "Index") 15 |
16 |@controllerDocumentation
18 | } 19 |API | Description |
---|---|
@api.HttpMethod.Method @api.RelativePath | 28 |
29 | @if (api.Documentation != null)
30 | {
31 | @api.Documentation 32 | } 33 | else 34 | { 35 |No documentation available. 36 | } 37 | |
38 |
@description.Documentation
16 | } 17 | else 18 | { 19 |No documentation available.
20 | } 21 | 22 | @if (hasParameters || hasRequestSamples) 23 | { 24 |@description.ResponseDescription.Documentation
43 | } 44 | else 45 | { 46 |No documentation available.
47 | } 48 |Sample not available.
13 | } -------------------------------------------------------------------------------- /ProjectTrackingServices/Areas/HelpPage/Views/Help/DisplayTemplates/Parameters.cshtml: -------------------------------------------------------------------------------- 1 | @using System.Collections.ObjectModel 2 | @using System.Web.Http.Description 3 | @using System.Threading 4 | @model CollectionName | Description | Additional information |
---|---|---|
@parameter.Name | 24 |@parameterDocumentation |
25 |
26 | @switch (parameter.Source)
27 | {
28 | case ApiParameterSource.FromBody:
29 | Define this parameter in the request body. 30 | break; 31 | case ApiParameterSource.FromUri: 32 |Define this parameter in the request URI. 33 | break; 34 | case ApiParameterSource.Unknown: 35 | default: 36 |None. 37 | break; 38 | } 39 | |
40 |
Sample not available.
22 | } 23 | else 24 | { 25 | @Html.DisplayFor(s => sample); 26 | } 27 | } 28 |5 | @Model.Text 6 |-------------------------------------------------------------------------------- /ProjectTrackingServices/Areas/HelpPage/Views/Help/Index.cshtml: -------------------------------------------------------------------------------- 1 | @using System.Web.Http 2 | @using System.Web.Http.Controllers 3 | @using System.Web.Http.Description 4 | @using System.Collections.ObjectModel 5 | @using ProjectTrackingServices.Areas.HelpPage.Models 6 | @model Collection
27 | Provide a general description of your APIs here. 28 |
29 |ASP.NET is a free web framework for building great Web sites and Web applications using HTML, CSS, and JavaScript.
4 | 5 |ASP.NET Web API is a framework that makes it easy to build HTTP services that reach 10 | a broad range of clients, including browsers and mobile devices. ASP.NET Web API 11 | is an ideal platform for building RESTful applications on the .NET Framework.
12 | 13 |NuGet is a free Visual Studio extension that makes it easy to add, remove, and update libraries and tools in Visual Studio projects.
17 | 18 |You can easily find a web hosting company that offers the right mix of features and price for your applications.
22 | 23 |19 | Employee ID 20 | | 21 |22 | Employee Name 23 | | 24 |25 | Designation 26 | | 27 |28 | Contact No. 29 | | 30 |31 | EMailID 32 | | 33 |34 | Skill Sets 35 | | 36 |37 | Modify Employee 38 | | 39 |40 | Delete Employee 41 | | 42 |
47 | {{emp.employeeID}} 48 | | 49 |50 | {{emp.employeeName}} 51 | | 52 |53 | {{emp.designation}} 54 | | 55 |56 | {{emp.contactNo}} 57 | | 58 |59 | {{emp.eMailID}} 60 | | 61 |62 | {{emp.skillSets}} 63 | | 64 |65 | Modify 66 | | 67 |68 | Delete 69 | | 70 |
9 | Comment ID 10 | | 11 |12 | Comments 13 | | 14 |15 | Modify Comment 16 | | 17 |18 | Delete Comment 19 | | 20 |
25 | {{comment.managerCommentID}} 26 | | 27 |28 | {{comment.comments}} 29 | | 30 |31 | Modify 32 | | 33 |34 | Delete 35 | | 36 |
9 | Project ID 10 | | 11 |12 | Project Name 13 | | 14 |15 | Start Date 16 | | 17 |18 | End Date 19 | | 20 |21 | Client Name 22 | | 23 |24 | Modify Project 25 | | 26 |27 | Delete Project 28 | | 29 |
34 | {{proj.projectID}} 35 | | 36 |37 | {{proj.projectName}} 38 | | 39 |40 | {{proj.startDate | date:'mediumDate'}} 41 | | 42 |43 | {{proj.endDate | date:'mediumDate'}} 44 | | 45 |46 | {{proj.clientName}} 47 | | 48 |49 | Modify 50 | | 51 |52 | Delete 53 | | 54 |
9 | Project Task ID 10 | | 11 |12 | Start Date 13 | | 14 |15 | End Date 16 | | 17 |18 | Task Completion (%) 19 | | 20 |
25 | {{task.projectTaskID}} 26 | | 27 |28 | {{task.taskStartDate}} 29 | | 30 |31 | {{task.taskEndDate}} 32 | | 33 |34 | {{task.taskCompletion}} % 35 | | 36 |
9 | User Story ID 10 | | 11 |12 | User Story 13 | | 14 |15 | Project ID 16 | | 17 |
22 | {{userStory.userStoryID}} 23 | | 24 |25 | {{userStory.story}} 26 | | 27 |28 | {{userStory.projectID}} 29 | | 30 |