├── ProjectTrackingServices
├── obj
│ └── Debug
│ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ ├── ProjectTrackingServices.dll
│ │ ├── ProjectTrackingServices.pdb
│ │ ├── TempPE
│ │ ├── ProjectTrackingDB.cs.dll
│ │ └── ProjectTrackingDB.Designer.cs.dll
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ └── ProjectTrackingServices.csprojResolveAssemblyReference.cache
├── Views
│ ├── _ViewStart.cshtml
│ ├── Shared
│ │ ├── Error.cshtml
│ │ └── _Layout.cshtml
│ ├── Home
│ │ └── Index.cshtml
│ └── Web.config
├── favicon.ico
├── Global.asax
├── Scripts
│ └── _references.js
├── Areas
│ └── HelpPage
│ │ ├── Views
│ │ ├── Help
│ │ │ ├── DisplayTemplates
│ │ │ │ ├── ImageSample.cshtml
│ │ │ │ ├── TextSample.cshtml
│ │ │ │ ├── InvalidSample.cshtml
│ │ │ │ ├── Samples.cshtml
│ │ │ │ ├── ApiGroup.cshtml
│ │ │ │ ├── HelpPageApiModel.cshtml
│ │ │ │ └── Parameters.cshtml
│ │ │ ├── Api.cshtml
│ │ │ └── Index.cshtml
│ │ ├── _ViewStart.cshtml
│ │ └── Shared
│ │ │ └── _Layout.cshtml
│ │ ├── SampleGeneration
│ │ ├── SampleDirection.cs
│ │ ├── TextSample.cs
│ │ ├── InvalidSample.cs
│ │ └── ImageSample.cs
│ │ ├── HelpPageAreaRegistration.cs
│ │ ├── Controllers
│ │ └── HelpController.cs
│ │ ├── ApiDescriptionExtensions.cs
│ │ ├── Models
│ │ └── HelpPageApiModel.cs
│ │ └── HelpPage.css
├── fonts
│ ├── glyphicons-halflings-regular.eot
│ ├── glyphicons-halflings-regular.ttf
│ └── glyphicons-halflings-regular.woff
├── App_Start
│ ├── FilterConfig.cs
│ ├── RouteConfig.cs
│ ├── WebApiConfig.cs
│ └── BundleConfig.cs
├── Controllers
│ ├── HomeController.cs
│ ├── ValuesController.cs
│ ├── PTProjectTasksController.cs
│ ├── PTManagerCommentsController.cs
│ ├── PTUserStoriesController.cs
│ └── PTProjectsController.cs
├── ProjectTrackingDB.cs
├── Global.asax.cs
├── Content
│ └── Site.css
├── ManagerComment.cs
├── ProjectTrackingDB.Designer.cs
├── UserStory.cs
├── Project.cs
├── Employee.cs
├── Web.Debug.config
├── ProjectTask.cs
├── ProjectTrackingDB.Context.cs
├── Web.Release.config
├── Properties
│ └── AssemblyInfo.cs
├── ProjectTrackingDB.edmx.diagram
├── ProjectTrackingServices.csproj.user
├── packages.config
└── Models
│ ├── ManagerCommentsRepository.cs
│ ├── UserStoriesRepository.cs
│ └── ProjectTasksRepository.cs
├── ProjectTrackingWebsite.v12.suo
├── ProjectTrackingWebsite
├── Global.asax
├── Images
│ ├── linkedin.png
│ ├── facebook-icon.png
│ └── Twitter_bird_icon.png
├── Scripts
│ ├── version.json
│ ├── angular-csp.css
│ ├── angular-cookies.min.js
│ ├── angular-loader.min.js
│ ├── angular-cookies.min.js.map
│ ├── i18n
│ │ ├── angular-locale_ms-bn.js
│ │ ├── angular-locale_ms.js
│ │ ├── angular-locale_id.js
│ │ ├── angular-locale_in.js
│ │ ├── angular-locale_ms-my.js
│ │ ├── angular-locale_id-id.js
│ │ ├── angular-locale_en-be.js
│ │ ├── angular-locale_en-bz.js
│ │ ├── angular-locale_en.js
│ │ ├── angular-locale_en-as.js
│ │ ├── angular-locale_en-bb.js
│ │ ├── angular-locale_en-bm.js
│ │ ├── angular-locale_en-bw.js
│ │ ├── angular-locale_en-fm.js
│ │ ├── angular-locale_en-gu.js
│ │ ├── angular-locale_en-gy.js
│ │ ├── angular-locale_en-hk.js
│ │ ├── angular-locale_en-iso.js
│ │ ├── angular-locale_en-jm.js
│ │ ├── angular-locale_en-mh.js
│ │ ├── angular-locale_en-mp.js
│ │ ├── angular-locale_en-mu.js
│ │ ├── angular-locale_en-na.js
│ │ ├── angular-locale_en-nz.js
│ │ ├── angular-locale_en-ph.js
│ │ ├── angular-locale_en-pk.js
│ │ ├── angular-locale_en-pr.js
│ │ ├── angular-locale_en-pw.js
│ │ ├── angular-locale_en-sg.js
│ │ ├── angular-locale_en-tc.js
│ │ ├── angular-locale_en-tt.js
│ │ ├── angular-locale_en-um.js
│ │ ├── angular-locale_en-us.js
│ │ ├── angular-locale_en-vg.js
│ │ ├── angular-locale_en-vi.js
│ │ ├── angular-locale_en-zw.js
│ │ ├── angular-locale_af-na.js
│ │ ├── angular-locale_af.js
│ │ ├── angular-locale_en-au.js
│ │ ├── angular-locale_en-ca.js
│ │ └── angular-locale_en-gb.js
│ └── app.js
├── Global.asax.cs
├── App_Start
│ └── WebApiConfig.cs
├── Services
│ ├── ManagerCommentsService.js
│ ├── EmployeesService.js
│ ├── UserStoriesService.js
│ └── ProjectTasksService.js
├── Controllers
│ ├── ManagerCommentsController.js
│ ├── EmployeesController.js
│ ├── UserStoriesController.js
│ └── ProjectTasksController.js
├── ProjectManagement
│ ├── ManagerCommentInsert.html
│ ├── ManagerCommentModify.html
│ ├── ManagerCommentDetails.html
│ ├── ProjectDetails.html
│ ├── ProjectInsert.html
│ └── ProjectModify.html
├── UserStories
│ ├── UserStoryDetails.html
│ ├── UserStoryUpdate.html
│ └── UserStoryInsert.html
├── Tasks
│ ├── ProjectTaskDetails.html
│ ├── ProjectTaskModify.html
│ └── ProjectTaskInsert.html
├── Web.Debug.config
├── Properties
│ └── AssemblyInfo.cs
├── ProjectTrackingWebsite.csproj.user
├── Home.html
├── CSS
│ └── Site.css
└── Employees
│ └── EmployeeDetails.html
├── .gitattributes
├── .gitignore
└── ProjectTrackingWebsite.sln
/ProjectTrackingServices/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ProjectTrackingServices/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ProjectTrackingServices/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ProjectTrackingServices/Views/_ViewStart.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | Layout = "~/Views/Shared/_Layout.cshtml";
3 | }
4 |
--------------------------------------------------------------------------------
/ProjectTrackingWebsite.v12.suo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetcurry/angular-webapi-series/HEAD/ProjectTrackingWebsite.v12.suo
--------------------------------------------------------------------------------
/ProjectTrackingServices/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetcurry/angular-webapi-series/HEAD/ProjectTrackingServices/favicon.ico
--------------------------------------------------------------------------------
/ProjectTrackingWebsite/Global.asax:
--------------------------------------------------------------------------------
1 | <%@ Application Codebehind="Global.asax.cs" Inherits="ProjectTrackingWebsite.Global" Language="C#" %>
2 |
--------------------------------------------------------------------------------
/ProjectTrackingServices/Global.asax:
--------------------------------------------------------------------------------
1 | <%@ Application Codebehind="Global.asax.cs" Inherits="ProjectTrackingServices.WebApiApplication" Language="C#" %>
2 |
--------------------------------------------------------------------------------
/ProjectTrackingWebsite/Images/linkedin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetcurry/angular-webapi-series/HEAD/ProjectTrackingWebsite/Images/linkedin.png
--------------------------------------------------------------------------------
/ProjectTrackingServices/Scripts/_references.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetcurry/angular-webapi-series/HEAD/ProjectTrackingServices/Scripts/_references.js
--------------------------------------------------------------------------------
/ProjectTrackingWebsite/Images/facebook-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetcurry/angular-webapi-series/HEAD/ProjectTrackingWebsite/Images/facebook-icon.png
--------------------------------------------------------------------------------
/ProjectTrackingWebsite/Images/Twitter_bird_icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetcurry/angular-webapi-series/HEAD/ProjectTrackingWebsite/Images/Twitter_bird_icon.png
--------------------------------------------------------------------------------
/ProjectTrackingServices/Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml:
--------------------------------------------------------------------------------
1 | @using ProjectTrackingServices.Areas.HelpPage
2 | @model ImageSample
3 |
4 |
--------------------------------------------------------------------------------
/ProjectTrackingServices/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetcurry/angular-webapi-series/HEAD/ProjectTrackingServices/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/ProjectTrackingServices/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetcurry/angular-webapi-series/HEAD/ProjectTrackingServices/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/ProjectTrackingServices/obj/Debug/ProjectTrackingServices.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetcurry/angular-webapi-series/HEAD/ProjectTrackingServices/obj/Debug/ProjectTrackingServices.dll
--------------------------------------------------------------------------------
/ProjectTrackingServices/obj/Debug/ProjectTrackingServices.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetcurry/angular-webapi-series/HEAD/ProjectTrackingServices/obj/Debug/ProjectTrackingServices.pdb
--------------------------------------------------------------------------------
/ProjectTrackingServices/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetcurry/angular-webapi-series/HEAD/ProjectTrackingServices/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/ProjectTrackingServices/obj/Debug/TempPE/ProjectTrackingDB.cs.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/dotnetcurry/angular-webapi-series/HEAD/ProjectTrackingServices/obj/Debug/TempPE/ProjectTrackingDB.cs.dll
--------------------------------------------------------------------------------
/ProjectTrackingServices/Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml:
--------------------------------------------------------------------------------
1 | @using ProjectTrackingServices.Areas.HelpPage
2 | @model TextSample
3 |
4 |
5 | @Model.Text 6 |-------------------------------------------------------------------------------- /ProjectTrackingServices/obj/Debug/TempPE/ProjectTrackingDB.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/angular-webapi-series/HEAD/ProjectTrackingServices/obj/Debug/TempPE/ProjectTrackingDB.Designer.cs.dll -------------------------------------------------------------------------------- /ProjectTrackingServices/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/angular-webapi-series/HEAD/ProjectTrackingServices/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /ProjectTrackingServices/Areas/HelpPage/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | // Change the Layout path below to blend the look and feel of the help page with your existing web pages 3 | Layout = "~/Views/Shared/_Layout.cshtml"; 4 | } -------------------------------------------------------------------------------- /ProjectTrackingServices/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/angular-webapi-series/HEAD/ProjectTrackingServices/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /ProjectTrackingServices/obj/Debug/ProjectTrackingServices.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnetcurry/angular-webapi-series/HEAD/ProjectTrackingServices/obj/Debug/ProjectTrackingServices.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /ProjectTrackingWebsite/Scripts/version.json: -------------------------------------------------------------------------------- 1 | {"raw":"v1.2.18","major":1,"minor":2,"patch":18,"prerelease":[],"build":[],"version":"1.2.18","codeName":"ear-extendability","full":"1.2.18","cdn":{"raw":"v1.2.17","major":1,"minor":2,"patch":17,"prerelease":[],"build":[],"version":"1.2.17","isStable":true,"docsUrl":"http://code.angularjs.org/1.2.17/docs"}} -------------------------------------------------------------------------------- /ProjectTrackingServices/Areas/HelpPage/SampleGeneration/SampleDirection.cs: -------------------------------------------------------------------------------- 1 | namespace ProjectTrackingServices.Areas.HelpPage 2 | { 3 | ///
Sample not available.
13 | } -------------------------------------------------------------------------------- /ProjectTrackingServices/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = null; 3 | } 4 | 5 | 6 | 7 | 8 | 9 |14 | @Html.ActionLink("Help Page Home", "Index") 15 |
16 || 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 |
| 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 |
Sample not available.
22 | } 23 | else 24 | { 25 | @Html.DisplayFor(s => sample); 26 | } 27 | } 28 || 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 |
27 | Provide a general description of your APIs here. 28 |
29 |@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 |
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 || 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 |
@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 || Name | 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 |
| 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 |