├── .gitattributes ├── WebApi ├── BusinessEntities │ ├── BusinessEntities.csproj │ ├── ProductEntity.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TokenEntity.cs │ ├── UserEntity.cs │ ├── bin │ │ └── Debug │ │ │ ├── BusinessEntities.dll │ │ │ └── BusinessEntities.pdb │ └── obj │ │ └── Debug │ │ ├── BusinessEntities.csproj.FileListAbsolute.txt │ │ ├── BusinessEntities.dll │ │ ├── BusinessEntities.pdb │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── BusinessServices │ ├── BusinessServices.csproj │ ├── DependencyResolver.cs │ ├── IProductServices.cs │ ├── ITokenServices.cs │ ├── IUserServices.cs │ ├── ProductServices.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TokenServices.cs │ ├── UserServices.cs │ ├── bin │ │ └── Debug │ │ │ ├── AutoMapper.Net4.dll │ │ │ ├── AutoMapper.Net4.pdb │ │ │ ├── AutoMapper.dll │ │ │ ├── AutoMapper.pdb │ │ │ ├── AutoMapper.xml │ │ │ ├── BusinessEntities.dll │ │ │ ├── BusinessEntities.pdb │ │ │ ├── BusinessServices.dll │ │ │ ├── BusinessServices.pdb │ │ │ ├── DataModel.dll │ │ │ ├── DataModel.pdb │ │ │ ├── EntityFramework.dll │ │ │ ├── EntityFramework.xml │ │ │ ├── Microsoft.Practices.ServiceLocation.dll │ │ │ ├── Microsoft.Practices.ServiceLocation.pdb │ │ │ ├── Microsoft.Practices.ServiceLocation.xml │ │ │ ├── Microsoft.Practices.Unity.dll │ │ │ ├── Microsoft.Practices.Unity.xml │ │ │ ├── Resolver.dll │ │ │ └── Resolver.pdb │ ├── obj │ │ └── Debug │ │ │ ├── BusinessServices.csproj.FileListAbsolute.txt │ │ │ ├── BusinessServices.csprojResolveAssemblyReference.cache │ │ │ ├── BusinessServices.dll │ │ │ ├── BusinessServices.pdb │ │ │ └── DesignTimeResolveAssemblyReferencesInput.cache │ └── packages.config ├── DataModel │ ├── App.Config │ ├── DataModel.csproj │ ├── DependencyResolver.cs │ ├── GenericRepository │ │ └── GenericRepository.cs │ ├── Model1.Context.cs │ ├── Model1.Context.tt │ ├── Model1.cs │ ├── Model1.tt │ ├── Product.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Token.cs │ ├── UnitOfWork │ │ ├── IUnitOfWork.cs │ │ └── UnitOfWork.cs │ ├── User.cs │ ├── WebApiDataModel.Designer.cs │ ├── WebApiDataModel.edmx │ ├── bin │ │ └── Debug │ │ │ ├── DataModel.dll │ │ │ ├── DataModel.dll.config │ │ │ ├── DataModel.pdb │ │ │ ├── EntityFramework.dll │ │ │ ├── EntityFramework.xml │ │ │ ├── Microsoft.Practices.ServiceLocation.dll │ │ │ ├── Microsoft.Practices.ServiceLocation.pdb │ │ │ ├── Microsoft.Practices.ServiceLocation.xml │ │ │ ├── Microsoft.Practices.Unity.dll │ │ │ ├── Microsoft.Practices.Unity.xml │ │ │ ├── Resolver.dll │ │ │ └── Resolver.pdb │ ├── obj │ │ └── Debug │ │ │ ├── DataModel.csproj.FileListAbsolute.txt │ │ │ ├── DataModel.csprojResolveAssemblyReference.cache │ │ │ ├── DataModel.dll │ │ │ ├── DataModel.pdb │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── TempPE │ │ │ ├── DataModel.cs.dll │ │ │ ├── Model1.cs.dll │ │ │ └── WebApiDataModel.Designer.cs.dll │ │ │ └── edmxResourcesToEmbed │ │ │ ├── WebApiDataModel.csdl │ │ │ ├── WebApiDataModel.msl │ │ │ └── WebApiDataModel.ssdl │ └── packages.config ├── Resolver │ ├── ComponentLoader.cs │ ├── IComponent.cs │ ├── IRegisterComponent.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resolver.csproj │ ├── Unity.Mvc3.README.txt │ ├── bin │ │ └── Debug │ │ │ ├── Microsoft.Practices.ServiceLocation.dll │ │ │ ├── Microsoft.Practices.ServiceLocation.pdb │ │ │ ├── Microsoft.Practices.ServiceLocation.xml │ │ │ ├── Microsoft.Practices.Unity.Configuration.dll │ │ │ ├── Microsoft.Practices.Unity.Configuration.xml │ │ │ ├── Microsoft.Practices.Unity.dll │ │ │ ├── Microsoft.Practices.Unity.xml │ │ │ ├── Resolver.dll │ │ │ ├── Resolver.pdb │ │ │ └── Unity.Mvc3.dll │ ├── obj │ │ └── Debug │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── Resolver.csproj.FileListAbsolute.txt │ │ │ ├── Resolver.dll │ │ │ └── Resolver.pdb │ └── packages.config ├── WebApi.sln ├── WebApi.suo ├── WebApi │ ├── APILog │ │ ├── 2015-07-06-api.log │ │ ├── 2015-07-07-api.log │ │ ├── 2015-07-09-api.log │ │ ├── 2015-07-18-api.log │ │ └── 2015-09-05-api.log │ ├── ActionFilters │ │ ├── AuthorizationRequiredAttribute.cs │ │ ├── GlobalExceptionAttribute.cs │ │ └── LoggingFilterAttribute.cs │ ├── App_Start │ │ ├── AttributeRoutingHttpConfig.cs │ │ ├── BundleConfig.cs │ │ ├── CorsHandler.cs │ │ ├── FilterConfig.cs │ │ ├── RouteConfig.cs │ │ └── WebApiConfig.cs │ ├── Areas │ │ └── HelpPage │ │ │ ├── ApiDescriptionExtensions.cs │ │ │ ├── App_Start │ │ │ └── HelpPageConfig.cs │ │ │ ├── Controllers │ │ │ └── HelpController.cs │ │ │ ├── HelpPage.css │ │ │ ├── HelpPageAreaRegistration.cs │ │ │ ├── HelpPageConfigurationExtensions.cs │ │ │ ├── Models │ │ │ └── HelpPageApiModel.cs │ │ │ ├── SampleGeneration │ │ │ ├── HelpPageSampleGenerator.cs │ │ │ ├── HelpPageSampleKey.cs │ │ │ ├── ImageSample.cs │ │ │ ├── InvalidSample.cs │ │ │ ├── ObjectGenerator.cs │ │ │ ├── SampleDirection.cs │ │ │ └── TextSample.cs │ │ │ ├── TestClient.css │ │ │ ├── Views │ │ │ ├── Help │ │ │ │ ├── Api.cshtml │ │ │ │ ├── DisplayTemplates │ │ │ │ │ ├── ApiGroup.cshtml │ │ │ │ │ ├── HelpPageApiModel.cshtml │ │ │ │ │ ├── ImageSample.cshtml │ │ │ │ │ ├── InvalidSample.cshtml │ │ │ │ │ ├── Parameters.cshtml │ │ │ │ │ ├── Samples.cshtml │ │ │ │ │ ├── TestClientDialogs.cshtml │ │ │ │ │ ├── TestClientReferences.cshtml │ │ │ │ │ └── TextSample.cshtml │ │ │ │ └── Index.cshtml │ │ │ ├── Shared │ │ │ │ └── _Layout.cshtml │ │ │ ├── Web.config │ │ │ └── _ViewStart.cshtml │ │ │ └── XmlDocumentationProvider.cs │ ├── Bootstrapper.cs │ ├── Content │ │ ├── Site.css │ │ └── themes │ │ │ └── base │ │ │ ├── images │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ ├── jquery-ui.css │ │ │ ├── jquery.ui.accordion.css │ │ │ ├── jquery.ui.all.css │ │ │ ├── jquery.ui.autocomplete.css │ │ │ ├── jquery.ui.base.css │ │ │ ├── jquery.ui.button.css │ │ │ ├── jquery.ui.core.css │ │ │ ├── jquery.ui.datepicker.css │ │ │ ├── jquery.ui.dialog.css │ │ │ ├── jquery.ui.menu.css │ │ │ ├── jquery.ui.progressbar.css │ │ │ ├── jquery.ui.resizable.css │ │ │ ├── jquery.ui.selectable.css │ │ │ ├── jquery.ui.slider.css │ │ │ ├── jquery.ui.spinner.css │ │ │ ├── jquery.ui.tabs.css │ │ │ ├── jquery.ui.theme.css │ │ │ ├── jquery.ui.tooltip.css │ │ │ └── minified │ │ │ ├── images │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ ├── jquery-ui.min.css │ │ │ ├── jquery.ui.accordion.min.css │ │ │ ├── jquery.ui.autocomplete.min.css │ │ │ ├── jquery.ui.button.min.css │ │ │ ├── jquery.ui.core.min.css │ │ │ ├── jquery.ui.datepicker.min.css │ │ │ ├── jquery.ui.dialog.min.css │ │ │ ├── jquery.ui.menu.min.css │ │ │ ├── jquery.ui.progressbar.min.css │ │ │ ├── jquery.ui.resizable.min.css │ │ │ ├── jquery.ui.selectable.min.css │ │ │ ├── jquery.ui.slider.min.css │ │ │ ├── jquery.ui.spinner.min.css │ │ │ ├── jquery.ui.tabs.min.css │ │ │ ├── jquery.ui.theme.min.css │ │ │ └── jquery.ui.tooltip.min.css │ ├── Controllers │ │ ├── AuthenticateController.cs │ │ ├── HomeController.cs │ │ └── ProductController.cs │ ├── ErrorHelper │ │ ├── ApiBusinessException.cs │ │ ├── ApiDataException.cs │ │ ├── ApiException.cs │ │ └── IApiExceptions.cs │ ├── Filters │ │ ├── ApiAuthenticationFilter.cs │ │ ├── BasicAuthenticationIdentity.cs │ │ └── GenericAuthenticationFilter.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── Helpers │ │ ├── JSONHelper.cs │ │ ├── NLogger.cs │ │ └── ServiceStatus.cs │ ├── Images │ │ ├── accent.png │ │ ├── bullet.png │ │ ├── heroAccent.png │ │ ├── orderedList0.png │ │ ├── orderedList1.png │ │ ├── orderedList2.png │ │ ├── orderedList3.png │ │ ├── orderedList4.png │ │ ├── orderedList5.png │ │ ├── orderedList6.png │ │ ├── orderedList7.png │ │ ├── orderedList8.png │ │ └── orderedList9.png │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Scripts │ │ ├── WebApiTestClient.js │ │ ├── _references.js │ │ ├── jquery-1.7.1-vsdoc.js │ │ ├── jquery-1.7.1.js │ │ ├── jquery-1.7.1.min.js │ │ ├── jquery-ui-1.9.2.js │ │ ├── jquery-ui-1.9.2.min.js │ │ ├── jquery.unobtrusive-ajax.js │ │ ├── jquery.unobtrusive-ajax.min.js │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ ├── jquery.validate.unobtrusive.js │ │ ├── jquery.validate.unobtrusive.min.js │ │ ├── knockout-2.2.1.debug.js │ │ ├── knockout-2.2.1.js │ │ └── modernizr-2.5.3.js │ ├── Unity.Mvc3.README.txt │ ├── Unity.WebAPI.README.txt │ ├── Views │ │ ├── Home │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ └── _Layout.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── Web.config.install.xdt │ ├── Web.config.uninstall.xdt │ ├── WebApi.csproj │ ├── WebApi.csproj.user │ ├── bin │ │ ├── Antlr3.Runtime.dll │ │ ├── AttributeRouting.Web.Http.WebHost.dll │ │ ├── AttributeRouting.Web.Http.WebHost.xml │ │ ├── AttributeRouting.Web.Http.dll │ │ ├── AttributeRouting.Web.Http.xml │ │ ├── AttributeRouting.Web.dll │ │ ├── AttributeRouting.Web.xml │ │ ├── AttributeRouting.dll │ │ ├── AttributeRouting.xml │ │ ├── AutoMapper.Net4.dll │ │ ├── AutoMapper.Net4.pdb │ │ ├── AutoMapper.dll │ │ ├── AutoMapper.pdb │ │ ├── AutoMapper.xml │ │ ├── BusinessEntities.dll │ │ ├── BusinessEntities.pdb │ │ ├── BusinessServices.dll │ │ ├── BusinessServices.pdb │ │ ├── DataModel.dll │ │ ├── DataModel.pdb │ │ ├── EntityFramework.dll │ │ ├── EntityFramework.xml │ │ ├── Microsoft.Practices.ServiceLocation.dll │ │ ├── Microsoft.Practices.ServiceLocation.pdb │ │ ├── Microsoft.Practices.ServiceLocation.xml │ │ ├── Microsoft.Practices.Unity.Configuration.dll │ │ ├── Microsoft.Practices.Unity.Configuration.xml │ │ ├── Microsoft.Practices.Unity.dll │ │ ├── Microsoft.Practices.Unity.xml │ │ ├── Microsoft.Web.Infrastructure.dll │ │ ├── NLog.dll │ │ ├── NLog.xml │ │ ├── Newtonsoft.Json.dll │ │ ├── Newtonsoft.Json.xml │ │ ├── Resolver.dll │ │ ├── Resolver.pdb │ │ ├── System.Net.Http.Formatting.dll │ │ ├── System.Net.Http.Formatting.xml │ │ ├── System.Net.Http.WebRequest.dll │ │ ├── System.Net.Http.WebRequest.xml │ │ ├── System.Net.Http.dll │ │ ├── System.Net.Http.xml │ │ ├── System.Web.Helpers.dll │ │ ├── System.Web.Helpers.xml │ │ ├── System.Web.Http.WebHost.dll │ │ ├── System.Web.Http.WebHost.xml │ │ ├── System.Web.Http.dll │ │ ├── System.Web.Http.xml │ │ ├── System.Web.Mvc.dll │ │ ├── System.Web.Mvc.xml │ │ ├── System.Web.Optimization.dll │ │ ├── System.Web.Providers.dll │ │ ├── System.Web.Razor.dll │ │ ├── System.Web.Razor.xml │ │ ├── System.Web.WebPages.Deployment.dll │ │ ├── System.Web.WebPages.Deployment.xml │ │ ├── System.Web.WebPages.Razor.dll │ │ ├── System.Web.WebPages.Razor.xml │ │ ├── System.Web.WebPages.dll │ │ ├── System.Web.WebPages.xml │ │ ├── Unity.Mvc3.dll │ │ ├── Unity.WebApi.dll │ │ ├── WebActivator.dll │ │ ├── WebActivator.pdb │ │ ├── WebApi.dll │ │ ├── WebApi.pdb │ │ └── WebGrease.dll │ ├── favicon.ico │ ├── obj │ │ └── Debug │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── WebApi.csproj.FileListAbsolute.txt │ │ │ ├── WebApi.csprojResolveAssemblyReference.cache │ │ │ ├── WebApi.dll │ │ │ └── WebApi.pdb │ └── packages.config └── packages │ ├── AttributeRouting.Core.3.5.6 │ ├── AttributeRouting.Core.3.5.6.nupkg │ └── lib │ │ └── net40 │ │ ├── AttributeRouting.dll │ │ └── AttributeRouting.xml │ ├── AttributeRouting.Core.Http.3.5.6 │ ├── AttributeRouting.Core.Http.3.5.6.nupkg │ └── lib │ │ └── net40 │ │ ├── AttributeRouting.Web.Http.dll │ │ └── AttributeRouting.Web.Http.xml │ ├── AttributeRouting.Core.Web.3.5.6 │ ├── AttributeRouting.Core.Web.3.5.6.nupkg │ └── lib │ │ └── net40 │ │ ├── AttributeRouting.Web.dll │ │ └── AttributeRouting.Web.xml │ ├── AttributeRouting.WebApi.3.5.6 │ ├── AttributeRouting.WebApi.3.5.6.nupkg │ ├── content │ │ ├── App_Start │ │ │ ├── AttributeRoutingHttpConfig.cs.pp │ │ │ └── AttributeRoutingHttpConfig.vb.pp │ │ └── web.config.transform │ ├── lib │ │ └── net40 │ │ │ ├── AttributeRouting.Web.Http.WebHost.dll │ │ │ └── AttributeRouting.Web.Http.WebHost.xml │ ├── readme.txt │ └── tools │ │ └── install.ps1 │ ├── AutoMapper.3.3.1 │ ├── AutoMapper.3.3.1.nupkg │ ├── lib │ │ ├── MonoAndroid │ │ │ ├── AutoMapper.Android.dll │ │ │ ├── AutoMapper.Android.pdb │ │ │ ├── AutoMapper.dll │ │ │ ├── AutoMapper.pdb │ │ │ └── AutoMapper.xml │ │ ├── MonoTouch │ │ │ ├── AutoMapper.dll │ │ │ ├── AutoMapper.iOS.dll │ │ │ ├── AutoMapper.iOS.pdb │ │ │ ├── AutoMapper.pdb │ │ │ └── AutoMapper.xml │ │ ├── net40 │ │ │ ├── AutoMapper.Net4.dll │ │ │ ├── AutoMapper.Net4.pdb │ │ │ ├── AutoMapper.dll │ │ │ ├── AutoMapper.pdb │ │ │ └── AutoMapper.xml │ │ ├── portable-windows8+net40+wp8+sl5+MonoAndroid+MonoTouch │ │ │ ├── AutoMapper.dll │ │ │ ├── AutoMapper.pdb │ │ │ └── AutoMapper.xml │ │ ├── portable-windows8+net40+wp8+wpa81+sl5+MonoAndroid+MonoTouch │ │ │ ├── AutoMapper.dll │ │ │ ├── AutoMapper.pdb │ │ │ └── AutoMapper.xml │ │ ├── sl5 │ │ │ ├── AutoMapper.SL5.dll │ │ │ ├── AutoMapper.SL5.pdb │ │ │ ├── AutoMapper.dll │ │ │ ├── AutoMapper.pdb │ │ │ └── AutoMapper.xml │ │ ├── windows8 │ │ │ ├── AutoMapper.WinRT.dll │ │ │ ├── AutoMapper.WinRT.pdb │ │ │ ├── AutoMapper.dll │ │ │ ├── AutoMapper.pdb │ │ │ └── AutoMapper.xml │ │ ├── wp8 │ │ │ ├── AutoMapper.WP8.dll │ │ │ ├── AutoMapper.WP8.pdb │ │ │ ├── AutoMapper.dll │ │ │ ├── AutoMapper.pdb │ │ │ └── AutoMapper.xml │ │ └── wpa81 │ │ │ ├── AutoMapper.WPA81.dll │ │ │ ├── AutoMapper.WPA81.pdb │ │ │ ├── AutoMapper.dll │ │ │ ├── AutoMapper.pdb │ │ │ └── AutoMapper.xml │ └── tools │ │ ├── AutoMapper.targets │ │ ├── MonoAndroid │ │ ├── Install.ps1 │ │ └── uninstall.ps1 │ │ ├── MonoTouch │ │ ├── Install.ps1 │ │ └── uninstall.ps1 │ │ ├── net40 │ │ ├── Install.ps1 │ │ └── uninstall.ps1 │ │ ├── sl5 │ │ ├── Install.ps1 │ │ └── uninstall.ps1 │ │ ├── windows8 │ │ ├── Install.ps1 │ │ └── uninstall.ps1 │ │ ├── wp8 │ │ ├── Install.ps1 │ │ └── uninstall.ps1 │ │ └── wpa81 │ │ ├── Install.ps1 │ │ └── uninstall.ps1 │ ├── CommonServiceLocator.1.0 │ ├── CommonServiceLocator.1.0.nupkg │ └── lib │ │ ├── NET35 │ │ ├── Microsoft.Practices.ServiceLocation.XML │ │ ├── Microsoft.Practices.ServiceLocation.dll │ │ └── Microsoft.Practices.ServiceLocation.pdb │ │ └── SL30 │ │ ├── Microsoft.Practices.ServiceLocation.XML │ │ └── Microsoft.Practices.ServiceLocation.dll │ ├── EntityFramework.5.0.0 │ ├── Content │ │ ├── App.config.transform │ │ └── Web.config.transform │ ├── EntityFramework.5.0.0.nupkg │ ├── lib │ │ ├── net40 │ │ │ ├── EntityFramework.dll │ │ │ └── EntityFramework.xml │ │ └── net45 │ │ │ ├── EntityFramework.dll │ │ │ └── EntityFramework.xml │ └── tools │ │ ├── EntityFramework.PS3.psd1 │ │ ├── EntityFramework.PowerShell.Utility.dll │ │ ├── EntityFramework.PowerShell.dll │ │ ├── EntityFramework.psd1 │ │ ├── EntityFramework.psm1 │ │ ├── Redirect.VS11.config │ │ ├── Redirect.config │ │ ├── about_EntityFramework.help.txt │ │ ├── init.ps1 │ │ ├── install.ps1 │ │ └── migrate.exe │ ├── EntityFramework.6.1.3 │ ├── EntityFramework.6.1.3.nupkg │ ├── content │ │ ├── App.config.transform │ │ └── Web.config.transform │ ├── lib │ │ ├── net40 │ │ │ ├── EntityFramework.SqlServer.dll │ │ │ ├── EntityFramework.SqlServer.xml │ │ │ ├── EntityFramework.dll │ │ │ └── EntityFramework.xml │ │ └── net45 │ │ │ ├── EntityFramework.SqlServer.dll │ │ │ ├── EntityFramework.SqlServer.xml │ │ │ ├── EntityFramework.dll │ │ │ └── EntityFramework.xml │ └── tools │ │ ├── EntityFramework.PowerShell.Utility.dll │ │ ├── EntityFramework.PowerShell.dll │ │ ├── EntityFramework.psd1 │ │ ├── EntityFramework.psm1 │ │ ├── about_EntityFramework.help.txt │ │ ├── init.ps1 │ │ ├── install.ps1 │ │ └── migrate.exe │ ├── Microsoft.AspNet.Mvc.4.0.40804.0 │ ├── Microsoft.AspNet.Mvc.4.0.40804.0.nupkg │ ├── content │ │ ├── Web.config.install.xdt │ │ └── Web.config.uninstall.xdt │ └── lib │ │ └── net40 │ │ ├── System.Web.Mvc.dll │ │ └── System.Web.Mvc.xml │ ├── Microsoft.AspNet.Providers.1.2 │ ├── Microsoft.AspNet.Providers.1.2.nupkg │ ├── content │ │ └── web.config.transform │ └── tools │ │ └── Install.ps1 │ ├── Microsoft.AspNet.Providers.Core.1.1 │ ├── Microsoft.AspNet.Providers.Core.1.1.nupkg │ ├── lib │ │ └── net40 │ │ │ └── System.Web.Providers.dll │ └── readme.html │ ├── Microsoft.AspNet.Razor.2.0.30506.0 │ ├── Microsoft.AspNet.Razor.2.0.30506.0.nupkg │ └── lib │ │ └── net40 │ │ ├── System.Web.Razor.dll │ │ └── System.Web.Razor.xml │ ├── Microsoft.AspNet.Web.Optimization.1.0.0 │ ├── Microsoft.AspNet.Web.Optimization.1.0.0.nupkg │ └── lib │ │ └── net40 │ │ └── System.Web.Optimization.dll │ ├── Microsoft.AspNet.WebApi.4.0.20710.0 │ └── Microsoft.AspNet.WebApi.4.0.20710.0.nupkg │ ├── Microsoft.AspNet.WebApi.Client.4.0.30506.0 │ ├── Microsoft.AspNet.WebApi.Client.4.0.30506.0.nupkg │ └── lib │ │ └── net40 │ │ ├── System.Net.Http.Formatting.dll │ │ └── System.Net.Http.Formatting.xml │ ├── Microsoft.AspNet.WebApi.Core.4.0.30506.0 │ ├── Microsoft.AspNet.WebApi.Core.4.0.30506.0.nupkg │ ├── content │ │ └── web.config.transform │ └── lib │ │ └── net40 │ │ ├── System.Web.Http.dll │ │ └── System.Web.Http.xml │ ├── Microsoft.AspNet.WebApi.HelpPage.4.0.30506 │ ├── Microsoft.AspNet.WebApi.HelpPage.4.0.30506.nupkg │ └── content │ │ └── Areas │ │ └── HelpPage │ │ ├── ApiDescriptionExtensions.cs.pp │ │ ├── App_Start │ │ └── HelpPageConfig.cs.pp │ │ ├── Controllers │ │ └── HelpController.cs.pp │ │ ├── HelpPage.css.pp │ │ ├── HelpPageAreaRegistration.cs.pp │ │ ├── HelpPageConfigurationExtensions.cs.pp │ │ ├── Models │ │ └── HelpPageApiModel.cs.pp │ │ ├── SampleGeneration │ │ ├── HelpPageSampleGenerator.cs.pp │ │ ├── HelpPageSampleKey.cs.pp │ │ ├── ImageSample.cs.pp │ │ ├── InvalidSample.cs.pp │ │ ├── ObjectGenerator.cs.pp │ │ ├── SampleDirection.cs.pp │ │ └── TextSample.cs.pp │ │ ├── Views │ │ ├── Help │ │ │ ├── Api.cshtml.pp │ │ │ ├── DisplayTemplates │ │ │ │ ├── ApiGroup.cshtml.pp │ │ │ │ ├── HelpPageApiModel.cshtml.pp │ │ │ │ ├── ImageSample.cshtml.pp │ │ │ │ ├── InvalidSample.cshtml.pp │ │ │ │ ├── Parameters.cshtml.pp │ │ │ │ ├── Samples.cshtml.pp │ │ │ │ └── TextSample.cshtml.pp │ │ │ └── Index.cshtml.pp │ │ ├── Shared │ │ │ └── _Layout.cshtml.pp │ │ ├── Web.config │ │ └── _ViewStart.cshtml.pp │ │ └── XmlDocumentationProvider.cs.pp │ ├── Microsoft.AspNet.WebApi.WebHost.4.0.30506.0 │ ├── Microsoft.AspNet.WebApi.WebHost.4.0.30506.0.nupkg │ └── lib │ │ └── net40 │ │ ├── System.Web.Http.WebHost.dll │ │ └── System.Web.Http.WebHost.xml │ ├── Microsoft.AspNet.WebPages.2.0.30506.0 │ ├── Microsoft.AspNet.WebPages.2.0.30506.0.nupkg │ └── lib │ │ └── net40 │ │ ├── System.Web.Helpers.dll │ │ ├── System.Web.Helpers.xml │ │ ├── System.Web.WebPages.Deployment.dll │ │ ├── System.Web.WebPages.Deployment.xml │ │ ├── System.Web.WebPages.Razor.dll │ │ ├── System.Web.WebPages.Razor.xml │ │ ├── System.Web.WebPages.dll │ │ └── System.Web.WebPages.xml │ ├── Microsoft.Net.Http.2.0.20710.0 │ ├── Microsoft.Net.Http.2.0.20710.0.nupkg │ └── lib │ │ ├── net40 │ │ ├── System.Net.Http.WebRequest.dll │ │ ├── System.Net.Http.WebRequest.xml │ │ ├── System.Net.Http.dll │ │ └── System.Net.Http.xml │ │ └── net45 │ │ └── _._ │ ├── Microsoft.Web.Infrastructure.1.0.0.0 │ ├── Microsoft.Web.Infrastructure.1.0.0.0.nupkg │ └── lib │ │ └── net40 │ │ └── Microsoft.Web.Infrastructure.dll │ ├── Microsoft.jQuery.Unobtrusive.Ajax.2.0.20710.0 │ ├── Content │ │ └── Scripts │ │ │ ├── jquery.unobtrusive-ajax.js │ │ │ └── jquery.unobtrusive-ajax.min.js │ └── Microsoft.jQuery.Unobtrusive.Ajax.2.0.20710.0.nupkg │ ├── Microsoft.jQuery.Unobtrusive.Validation.2.0.20710.0 │ ├── Content │ │ └── Scripts │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ └── jquery.validate.unobtrusive.min.js │ └── Microsoft.jQuery.Unobtrusive.Validation.2.0.20710.0.nupkg │ ├── Modernizr.2.5.3 │ ├── Content │ │ └── Scripts │ │ │ └── modernizr-2.5.3.js │ └── Modernizr.2.5.3.nupkg │ ├── NLog.3.1.0.0 │ ├── NLog.3.1.0.0.nupkg │ ├── NLog.3.1.0.0.nuspec │ └── lib │ │ ├── net35 │ │ ├── NLog.dll │ │ └── NLog.xml │ │ ├── net40 │ │ ├── NLog.dll │ │ └── NLog.xml │ │ ├── net45 │ │ ├── NLog.dll │ │ └── NLog.xml │ │ ├── sl4 │ │ ├── NLog.dll │ │ └── NLog.xml │ │ └── sl5 │ │ ├── NLog.dll │ │ └── NLog.xml │ ├── Newtonsoft.Json.4.5.11 │ ├── Newtonsoft.Json.4.5.11.nupkg │ └── lib │ │ ├── net20 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ │ ├── net35 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ │ ├── net40 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ │ ├── portable-net40+sl4+wp7+win8 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ │ ├── sl3-wp │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ │ ├── sl4-windowsphone71 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ │ ├── sl4 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ │ └── winrt45 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── Unity.2.1.505.2 │ ├── Unity.2.1.505.2.nupkg │ ├── lib │ │ ├── NET35 │ │ │ ├── Microsoft.Practices.Unity.Configuration.dll │ │ │ ├── Microsoft.Practices.Unity.Configuration.xml │ │ │ ├── Microsoft.Practices.Unity.dll │ │ │ └── Microsoft.Practices.Unity.xml │ │ └── SL30 │ │ │ ├── Microsoft.Practices.Unity.Silverlight.dll │ │ │ └── Microsoft.Practices.Unity.Silverlight.xml │ └── tools │ │ ├── Utils.psm1 │ │ └── install.ps1 │ ├── Unity.Mvc3.1.2 │ ├── Build.bat │ ├── Unity.Mvc3.1.2.nupkg │ ├── content │ │ ├── Bootstrapper.cs.pp │ │ └── Unity.Mvc3.README.txt │ └── lib │ │ └── net40 │ │ └── Unity.Mvc3.dll │ ├── Unity.WebAPI.0.10 │ ├── Build.bat │ ├── Unity.WebAPI.0.10.nupkg │ ├── content │ │ ├── Bootstrapper.cs.pp │ │ └── Unity.WebAPI.README.txt │ └── lib │ │ └── net40 │ │ └── Unity.WebApi.dll │ ├── WebActivator.1.0.0.0 │ ├── WebActivator.1.0.0.0.nupkg │ └── lib │ │ ├── WebActivator.dll │ │ └── WebActivator.pdb │ ├── WebApiTestClient.1.1.1 │ ├── WebApiTestClient.1.1.1.nupkg │ ├── content │ │ ├── Areas │ │ │ └── HelpPage │ │ │ │ ├── TestClient.css │ │ │ │ └── Views │ │ │ │ └── Help │ │ │ │ └── DisplayTemplates │ │ │ │ ├── TestClientDialogs.cshtml.pp │ │ │ │ └── TestClientReferences.cshtml │ │ └── Scripts │ │ │ └── WebApiTestClient.js │ ├── readme.txt │ └── tools │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ ├── WebGrease.1.1.0 │ ├── WebGrease.1.1.0.nupkg │ ├── lib │ │ ├── Antlr3.Runtime.dll │ │ └── WebGrease.dll │ └── tools │ │ └── WG.exe │ ├── jQuery.1.7.1.1 │ ├── Content │ │ └── Scripts │ │ │ ├── jquery-1.7.1-vsdoc.js │ │ │ ├── jquery-1.7.1.js │ │ │ └── jquery-1.7.1.min.js │ ├── Tools │ │ ├── common.ps1 │ │ ├── install.ps1 │ │ ├── jquery-1.7.1.intellisense.js │ │ └── uninstall.ps1 │ └── jQuery.1.7.1.1.nupkg │ ├── jQuery.UI.Combined.1.9.2 │ ├── Content │ │ ├── Content │ │ │ └── themes │ │ │ │ └── base │ │ │ │ ├── images │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery.ui.accordion.css │ │ │ │ ├── jquery.ui.all.css │ │ │ │ ├── jquery.ui.autocomplete.css │ │ │ │ ├── jquery.ui.base.css │ │ │ │ ├── jquery.ui.button.css │ │ │ │ ├── jquery.ui.core.css │ │ │ │ ├── jquery.ui.datepicker.css │ │ │ │ ├── jquery.ui.dialog.css │ │ │ │ ├── jquery.ui.menu.css │ │ │ │ ├── jquery.ui.progressbar.css │ │ │ │ ├── jquery.ui.resizable.css │ │ │ │ ├── jquery.ui.selectable.css │ │ │ │ ├── jquery.ui.slider.css │ │ │ │ ├── jquery.ui.spinner.css │ │ │ │ ├── jquery.ui.tabs.css │ │ │ │ ├── jquery.ui.theme.css │ │ │ │ ├── jquery.ui.tooltip.css │ │ │ │ └── minified │ │ │ │ ├── images │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── jquery-ui.min.css │ │ │ │ ├── jquery.ui.accordion.min.css │ │ │ │ ├── jquery.ui.autocomplete.min.css │ │ │ │ ├── jquery.ui.button.min.css │ │ │ │ ├── jquery.ui.core.min.css │ │ │ │ ├── jquery.ui.datepicker.min.css │ │ │ │ ├── jquery.ui.dialog.min.css │ │ │ │ ├── jquery.ui.menu.min.css │ │ │ │ ├── jquery.ui.progressbar.min.css │ │ │ │ ├── jquery.ui.resizable.min.css │ │ │ │ ├── jquery.ui.selectable.min.css │ │ │ │ ├── jquery.ui.slider.min.css │ │ │ │ ├── jquery.ui.spinner.min.css │ │ │ │ ├── jquery.ui.tabs.min.css │ │ │ │ ├── jquery.ui.theme.min.css │ │ │ │ └── jquery.ui.tooltip.min.css │ │ └── Scripts │ │ │ ├── jquery-ui-1.9.2.js │ │ │ └── jquery-ui-1.9.2.min.js │ ├── Tools │ │ ├── common.ps1 │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ └── jQuery.UI.Combined.1.9.2.nupkg │ ├── jQuery.Validation.1.9.0.1 │ ├── Content │ │ └── Scripts │ │ │ ├── jquery.validate-vsdoc.js │ │ │ ├── jquery.validate.js │ │ │ └── jquery.validate.min.js │ └── jQuery.Validation.1.9.0.1.nupkg │ ├── knockoutjs.2.2.1 │ ├── Content │ │ └── Scripts │ │ │ ├── knockout-2.2.1.debug.js │ │ │ └── knockout-2.2.1.js │ └── knockoutjs.2.2.1.nupkg │ └── repositories.config └── databasescript.zip /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /WebApi/BusinessEntities/ProductEntity.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace BusinessEntities 7 | { 8 | public class ProductEntity 9 | { 10 | public int ProductId { get; set; } 11 | public string ProductName { get; set; } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /WebApi/BusinessEntities/TokenEntity.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace BusinessEntities 7 | { 8 | public class TokenEntity 9 | { 10 | public int TokenId { get; set; } 11 | public int UserId { get; set; } 12 | public string AuthToken { get; set; } 13 | public System.DateTime IssuedOn { get; set; } 14 | public System.DateTime ExpiresOn { get; set; } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /WebApi/BusinessEntities/UserEntity.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace BusinessEntities 7 | { 8 | public class UserEntity 9 | { 10 | public int UserId { get; set; } 11 | public string UserName { get; set; } 12 | public string Password { get; set; } 13 | public string Name { get; set; } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /WebApi/BusinessEntities/bin/Debug/BusinessEntities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/BusinessEntities/bin/Debug/BusinessEntities.dll -------------------------------------------------------------------------------- /WebApi/BusinessEntities/bin/Debug/BusinessEntities.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/BusinessEntities/bin/Debug/BusinessEntities.pdb -------------------------------------------------------------------------------- /WebApi/BusinessEntities/obj/Debug/BusinessEntities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/BusinessEntities/obj/Debug/BusinessEntities.dll -------------------------------------------------------------------------------- /WebApi/BusinessEntities/obj/Debug/BusinessEntities.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/BusinessEntities/obj/Debug/BusinessEntities.pdb -------------------------------------------------------------------------------- /WebApi/BusinessEntities/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/BusinessEntities/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /WebApi/BusinessServices/DependencyResolver.cs: -------------------------------------------------------------------------------- 1 | using System.ComponentModel.Composition; 2 | using DataModel; 3 | using DataModel.UnitOfWork; 4 | using Resolver; 5 | 6 | namespace BusinessServices 7 | { 8 | [Export(typeof(IComponent))] 9 | public class DependencyResolver : IComponent 10 | { 11 | public void SetUp(IRegisterComponent registerComponent) 12 | { 13 | registerComponent.RegisterType(); 14 | registerComponent.RegisterType(); 15 | registerComponent.RegisterType(); 16 | 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /WebApi/BusinessServices/IProductServices.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | using BusinessEntities; 3 | 4 | namespace BusinessServices 5 | { 6 | /// 7 | /// Product Service Contract 8 | /// 9 | public interface IProductServices 10 | { 11 | ProductEntity GetProductById(int productId); 12 | IEnumerable GetAllProducts(); 13 | int CreateProduct(ProductEntity productEntity); 14 | bool UpdateProduct(int productId,ProductEntity productEntity); 15 | bool DeleteProduct(int productId); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /WebApi/BusinessServices/IUserServices.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace BusinessServices 3 | { 4 | public interface IUserServices 5 | { 6 | int Authenticate(string userName, string password); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /WebApi/BusinessServices/UserServices.cs: -------------------------------------------------------------------------------- 1 | using DataModel.UnitOfWork; 2 | 3 | namespace BusinessServices 4 | { 5 | /// 6 | /// Offers services for user specific operations 7 | /// 8 | public class UserServices : IUserServices 9 | { 10 | private readonly UnitOfWork _unitOfWork; 11 | 12 | /// 13 | /// Public constructor. 14 | /// 15 | public UserServices(UnitOfWork unitOfWork) 16 | { 17 | _unitOfWork = unitOfWork; 18 | } 19 | 20 | /// 21 | /// Public method to authenticate user by user name and password. 22 | /// 23 | /// 24 | /// 25 | /// 26 | public int Authenticate(string userName, string password) 27 | { 28 | var user = _unitOfWork.UserRepository.Get(u => u.UserName == userName && u.Password == password); 29 | if (user != null && user.UserId > 0) 30 | { 31 | return user.UserId; 32 | } 33 | return 0; 34 | } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /WebApi/BusinessServices/bin/Debug/AutoMapper.Net4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/BusinessServices/bin/Debug/AutoMapper.Net4.dll -------------------------------------------------------------------------------- /WebApi/BusinessServices/bin/Debug/AutoMapper.Net4.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/BusinessServices/bin/Debug/AutoMapper.Net4.pdb -------------------------------------------------------------------------------- /WebApi/BusinessServices/bin/Debug/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/BusinessServices/bin/Debug/AutoMapper.dll -------------------------------------------------------------------------------- /WebApi/BusinessServices/bin/Debug/AutoMapper.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/BusinessServices/bin/Debug/AutoMapper.pdb -------------------------------------------------------------------------------- /WebApi/BusinessServices/bin/Debug/BusinessEntities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/BusinessServices/bin/Debug/BusinessEntities.dll -------------------------------------------------------------------------------- /WebApi/BusinessServices/bin/Debug/BusinessEntities.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/BusinessServices/bin/Debug/BusinessEntities.pdb -------------------------------------------------------------------------------- /WebApi/BusinessServices/bin/Debug/BusinessServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/BusinessServices/bin/Debug/BusinessServices.dll -------------------------------------------------------------------------------- /WebApi/BusinessServices/bin/Debug/BusinessServices.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/BusinessServices/bin/Debug/BusinessServices.pdb -------------------------------------------------------------------------------- /WebApi/BusinessServices/bin/Debug/DataModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/BusinessServices/bin/Debug/DataModel.dll -------------------------------------------------------------------------------- /WebApi/BusinessServices/bin/Debug/DataModel.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/BusinessServices/bin/Debug/DataModel.pdb -------------------------------------------------------------------------------- /WebApi/BusinessServices/bin/Debug/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/BusinessServices/bin/Debug/EntityFramework.dll -------------------------------------------------------------------------------- /WebApi/BusinessServices/bin/Debug/Microsoft.Practices.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/BusinessServices/bin/Debug/Microsoft.Practices.ServiceLocation.dll -------------------------------------------------------------------------------- /WebApi/BusinessServices/bin/Debug/Microsoft.Practices.ServiceLocation.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/BusinessServices/bin/Debug/Microsoft.Practices.ServiceLocation.pdb -------------------------------------------------------------------------------- /WebApi/BusinessServices/bin/Debug/Microsoft.Practices.Unity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/BusinessServices/bin/Debug/Microsoft.Practices.Unity.dll -------------------------------------------------------------------------------- /WebApi/BusinessServices/bin/Debug/Resolver.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/BusinessServices/bin/Debug/Resolver.dll -------------------------------------------------------------------------------- /WebApi/BusinessServices/bin/Debug/Resolver.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/BusinessServices/bin/Debug/Resolver.pdb -------------------------------------------------------------------------------- /WebApi/BusinessServices/obj/Debug/BusinessServices.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/BusinessServices/obj/Debug/BusinessServices.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /WebApi/BusinessServices/obj/Debug/BusinessServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/BusinessServices/obj/Debug/BusinessServices.dll -------------------------------------------------------------------------------- /WebApi/BusinessServices/obj/Debug/BusinessServices.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/BusinessServices/obj/Debug/BusinessServices.pdb -------------------------------------------------------------------------------- /WebApi/BusinessServices/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/BusinessServices/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /WebApi/BusinessServices/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WebApi/DataModel/App.Config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 |
6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /WebApi/DataModel/DependencyResolver.cs: -------------------------------------------------------------------------------- 1 | using System.ComponentModel.Composition; 2 | using System.Data.Entity; 3 | using DataModel.UnitOfWork; 4 | using Resolver; 5 | 6 | namespace DataModel 7 | { 8 | [Export(typeof(IComponent))] 9 | public class DependencyResolver : IComponent 10 | { 11 | public void SetUp(IRegisterComponent registerComponent) 12 | { 13 | registerComponent.RegisterType(); 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /WebApi/DataModel/Model1.Context.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace DataModel 11 | { 12 | using System; 13 | using System.Data.Entity; 14 | using System.Data.Entity.Infrastructure; 15 | 16 | public partial class WebApiDbEntities : DbContext 17 | { 18 | public WebApiDbEntities() 19 | : base("name=WebApiDbEntities") 20 | { 21 | } 22 | 23 | protected override void OnModelCreating(DbModelBuilder modelBuilder) 24 | { 25 | throw new UnintentionalCodeFirstException(); 26 | } 27 | 28 | public DbSet Products { get; set; } 29 | public DbSet Tokens { get; set; } 30 | public DbSet Users { get; set; } 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /WebApi/DataModel/Model1.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | -------------------------------------------------------------------------------- /WebApi/DataModel/Product.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace DataModel 11 | { 12 | using System; 13 | using System.Collections.Generic; 14 | 15 | public partial class Product 16 | { 17 | public int ProductId { get; set; } 18 | public string ProductName { get; set; } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /WebApi/DataModel/Token.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace DataModel 11 | { 12 | using System; 13 | using System.Collections.Generic; 14 | 15 | public partial class Token 16 | { 17 | public int TokenId { get; set; } 18 | public int UserId { get; set; } 19 | public string AuthToken { get; set; } 20 | public System.DateTime IssuedOn { get; set; } 21 | public System.DateTime ExpiresOn { get; set; } 22 | 23 | public virtual User User { get; set; } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /WebApi/DataModel/UnitOfWork/IUnitOfWork.cs: -------------------------------------------------------------------------------- 1 | namespace DataModel.UnitOfWork 2 | { 3 | public interface IUnitOfWork 4 | { 5 | /// 6 | /// Save method. 7 | /// 8 | void Save(); 9 | } 10 | } -------------------------------------------------------------------------------- /WebApi/DataModel/User.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated from a template. 4 | // 5 | // Manual changes to this file may cause unexpected behavior in your application. 6 | // Manual changes to this file will be overwritten if the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | namespace DataModel 11 | { 12 | using System; 13 | using System.Collections.Generic; 14 | 15 | public partial class User 16 | { 17 | public User() 18 | { 19 | this.Tokens = new HashSet(); 20 | } 21 | 22 | public int UserId { get; set; } 23 | public string UserName { get; set; } 24 | public string Password { get; set; } 25 | public string Name { get; set; } 26 | 27 | public virtual ICollection Tokens { get; set; } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /WebApi/DataModel/WebApiDataModel.Designer.cs: -------------------------------------------------------------------------------- 1 | // Default code generation is disabled for model 'D:\AkhilMittal\Articles and Blogs\WebAPI\1\sourcecode\WebApi\DataModel\WebApiDataModel.edmx'. 2 | // To enable default code generation, change the value of the 'Code Generation Strategy' designer 3 | // property to an alternate value. This property is available in the Properties Window when the model is 4 | // open in the designer. -------------------------------------------------------------------------------- /WebApi/DataModel/bin/Debug/DataModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/DataModel/bin/Debug/DataModel.dll -------------------------------------------------------------------------------- /WebApi/DataModel/bin/Debug/DataModel.dll.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 |
6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /WebApi/DataModel/bin/Debug/DataModel.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/DataModel/bin/Debug/DataModel.pdb -------------------------------------------------------------------------------- /WebApi/DataModel/bin/Debug/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/DataModel/bin/Debug/EntityFramework.dll -------------------------------------------------------------------------------- /WebApi/DataModel/bin/Debug/Microsoft.Practices.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/DataModel/bin/Debug/Microsoft.Practices.ServiceLocation.dll -------------------------------------------------------------------------------- /WebApi/DataModel/bin/Debug/Microsoft.Practices.ServiceLocation.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/DataModel/bin/Debug/Microsoft.Practices.ServiceLocation.pdb -------------------------------------------------------------------------------- /WebApi/DataModel/bin/Debug/Microsoft.Practices.Unity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/DataModel/bin/Debug/Microsoft.Practices.Unity.dll -------------------------------------------------------------------------------- /WebApi/DataModel/bin/Debug/Resolver.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/DataModel/bin/Debug/Resolver.dll -------------------------------------------------------------------------------- /WebApi/DataModel/bin/Debug/Resolver.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/DataModel/bin/Debug/Resolver.pdb -------------------------------------------------------------------------------- /WebApi/DataModel/obj/Debug/DataModel.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/DataModel/obj/Debug/DataModel.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /WebApi/DataModel/obj/Debug/DataModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/DataModel/obj/Debug/DataModel.dll -------------------------------------------------------------------------------- /WebApi/DataModel/obj/Debug/DataModel.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/DataModel/obj/Debug/DataModel.pdb -------------------------------------------------------------------------------- /WebApi/DataModel/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/DataModel/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /WebApi/DataModel/obj/Debug/TempPE/DataModel.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/DataModel/obj/Debug/TempPE/DataModel.cs.dll -------------------------------------------------------------------------------- /WebApi/DataModel/obj/Debug/TempPE/Model1.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/DataModel/obj/Debug/TempPE/Model1.cs.dll -------------------------------------------------------------------------------- /WebApi/DataModel/obj/Debug/TempPE/WebApiDataModel.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/DataModel/obj/Debug/TempPE/WebApiDataModel.Designer.cs.dll -------------------------------------------------------------------------------- /WebApi/DataModel/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /WebApi/Resolver/IComponent.cs: -------------------------------------------------------------------------------- 1 | namespace Resolver 2 | { 3 | /// 4 | /// Register underlying types with unity. 5 | /// 6 | public interface IComponent 7 | { 8 | void SetUp(IRegisterComponent registerComponent); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /WebApi/Resolver/IRegisterComponent.cs: -------------------------------------------------------------------------------- 1 | namespace Resolver 2 | { 3 | /// 4 | /// Responsible for registering types in unity configuration by implementing IComponent 5 | /// 6 | public interface IRegisterComponent 7 | { 8 | /// 9 | /// Register type method 10 | /// 11 | /// 12 | /// 13 | /// 14 | void RegisterType(bool withInterception = false) where TTo : TFrom; 15 | 16 | /// 17 | /// Register type with container controlled life time manager 18 | /// 19 | /// 20 | /// 21 | /// 22 | void RegisterTypeWithControlledLifeTime(bool withInterception = false) where TTo : TFrom; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /WebApi/Resolver/Unity.Mvc3.README.txt: -------------------------------------------------------------------------------- 1 | Getting started with Unity.Mvc3 2 | ------------------------------- 3 | 4 | To get started, just add a call to Bootstrapper.Initialise() in the Application_Start method of Global.asax.cs 5 | and the MVC framework will then use the Unity.Mvc3 DependencyResolver to resolve your components. 6 | 7 | There is code in the bootstrapper to initialise the Unity container. Any components that you need to inject should be 8 | registered in the BuildUnityContainer method of the Bootstrapper. All components that implement IDisposable should be 9 | registered with the HierarchicalLifetimeManager to ensure that theey are properly disposed at the end of the request. 10 | 11 | It is typically not necessary to register your controllers with Unity. 12 | 13 | You can find out more about Unity.Mvc3 by visiting: 14 | 15 | http://devtrends.co.uk/blog/introducing-the-unity.mvc3-nuget-package-to-reconcile-mvc3-unity-and-idisposable -------------------------------------------------------------------------------- /WebApi/Resolver/bin/Debug/Microsoft.Practices.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/Resolver/bin/Debug/Microsoft.Practices.ServiceLocation.dll -------------------------------------------------------------------------------- /WebApi/Resolver/bin/Debug/Microsoft.Practices.ServiceLocation.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/Resolver/bin/Debug/Microsoft.Practices.ServiceLocation.pdb -------------------------------------------------------------------------------- /WebApi/Resolver/bin/Debug/Microsoft.Practices.Unity.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/Resolver/bin/Debug/Microsoft.Practices.Unity.Configuration.dll -------------------------------------------------------------------------------- /WebApi/Resolver/bin/Debug/Microsoft.Practices.Unity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/Resolver/bin/Debug/Microsoft.Practices.Unity.dll -------------------------------------------------------------------------------- /WebApi/Resolver/bin/Debug/Resolver.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/Resolver/bin/Debug/Resolver.dll -------------------------------------------------------------------------------- /WebApi/Resolver/bin/Debug/Resolver.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/Resolver/bin/Debug/Resolver.pdb -------------------------------------------------------------------------------- /WebApi/Resolver/bin/Debug/Unity.Mvc3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/Resolver/bin/Debug/Unity.Mvc3.dll -------------------------------------------------------------------------------- /WebApi/Resolver/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/Resolver/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /WebApi/Resolver/obj/Debug/Resolver.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/Resolver/obj/Debug/Resolver.dll -------------------------------------------------------------------------------- /WebApi/Resolver/obj/Debug/Resolver.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/Resolver/obj/Debug/Resolver.pdb -------------------------------------------------------------------------------- /WebApi/Resolver/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /WebApi/WebApi.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi.suo -------------------------------------------------------------------------------- /WebApi/WebApi/APILog/2015-09-05-api.log: -------------------------------------------------------------------------------- 1 | 2015-09-05 16:45:45.8209|ERROR|WebApi.Helpers.NLogger|Method: POST 2 | URL: http://localhost:50875/login 3 | Controller : WebApi.Controllers.AuthenticateController 4 | Action : Authenticate 5 | Action Parameters : 6 | Error: Login failed for user 'akhil'. Reason: The password of the account has expired. 7 | 8 | 9 | -------------------------------------------------------------------------------- /WebApi/WebApi/ActionFilters/LoggingFilterAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Http.Filters; 6 | using System.Web.Http.Controllers; 7 | using System.Web.Http.Tracing; 8 | using System.Web.Http; 9 | using WebApi.Helpers; 10 | 11 | 12 | namespace WebApi.ActionFilters 13 | { 14 | public class LoggingFilterAttribute : ActionFilterAttribute 15 | { 16 | public override void OnActionExecuting(HttpActionContext filterContext) 17 | { 18 | GlobalConfiguration.Configuration.Services.Replace(typeof(ITraceWriter), new NLogger()); 19 | var trace = GlobalConfiguration.Configuration.Services.GetTraceWriter(); 20 | trace.Info(filterContext.Request, "Controller : " + filterContext.ControllerContext.ControllerDescriptor.ControllerType.FullName + Environment.NewLine + "Action : " + filterContext.ActionDescriptor.ActionName, "JSON", filterContext.ActionArguments); 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /WebApi/WebApi/App_Start/AttributeRoutingHttpConfig.cs: -------------------------------------------------------------------------------- 1 | using System.Web.Http; 2 | using AttributeRouting.Web.Http.WebHost; 3 | 4 | [assembly: WebActivator.PreApplicationStartMethod(typeof(WebApi.AttributeRoutingHttpConfig), "Start")] 5 | 6 | namespace WebApi 7 | { 8 | public static class AttributeRoutingHttpConfig 9 | { 10 | public static void RegisterRoutes(HttpRouteCollection routes) 11 | { 12 | // See http://github.com/mccalltd/AttributeRouting/wiki for more options. 13 | // To debug routes locally using the built in ASP.NET development server, go to /routes.axd 14 | 15 | routes.MapHttpAttributeRoutes(); 16 | } 17 | 18 | public static void Start() 19 | { 20 | RegisterRoutes(GlobalConfiguration.Configuration.Routes); 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WebApi/WebApi/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- 1 | using System.Web; 2 | using System.Web.Mvc; 3 | using System.Web.Http.Filters; 4 | 5 | namespace WebApi 6 | { 7 | public class FilterConfig 8 | { 9 | public static void RegisterGlobalFilters(GlobalFilterCollection filters) 10 | { 11 | filters.Add(new HandleErrorAttribute()); 12 | } 13 | 14 | 15 | } 16 | } -------------------------------------------------------------------------------- /WebApi/WebApi/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | using System.Web.Routing; 7 | 8 | namespace WebApi 9 | { 10 | public class RouteConfig 11 | { 12 | public static void RegisterRoutes(RouteCollection routes) 13 | { 14 | routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); 15 | 16 | routes.MapRoute( 17 | name: "Default", 18 | url: "{controller}/{action}/{id}", 19 | defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional } 20 | ); 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /WebApi/WebApi/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- 1 | using System.Web.Http; 2 | using WebApi.ActionFilters; 3 | 4 | namespace WebApi.App_Start 5 | { 6 | public static class WebApiConfig 7 | { 8 | public static void Register(HttpConfiguration config) 9 | { 10 | config.Filters.Add(new LoggingFilterAttribute()); 11 | config.Filters.Add(new GlobalExceptionAttribute()); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /WebApi/WebApi/Areas/HelpPage/HelpPageAreaRegistration.cs: -------------------------------------------------------------------------------- 1 | using System.Web.Http; 2 | using System.Web.Mvc; 3 | 4 | namespace WebApi.Areas.HelpPage 5 | { 6 | public class HelpPageAreaRegistration : AreaRegistration 7 | { 8 | public override string AreaName 9 | { 10 | get 11 | { 12 | return "HelpPage"; 13 | } 14 | } 15 | 16 | public override void RegisterArea(AreaRegistrationContext context) 17 | { 18 | context.MapRoute( 19 | "HelpPage_Default", 20 | "Help/{action}/{apiId}", 21 | new { controller = "Help", action = "Index", apiId = UrlParameter.Optional }); 22 | 23 | HelpPageConfig.Register(GlobalConfiguration.Configuration); 24 | } 25 | } 26 | } -------------------------------------------------------------------------------- /WebApi/WebApi/Areas/HelpPage/SampleGeneration/InvalidSample.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace WebApi.Areas.HelpPage 4 | { 5 | /// 6 | /// This represents an invalid sample on the help page. There's a display template named InvalidSample associated with this class. 7 | /// 8 | public class InvalidSample 9 | { 10 | public InvalidSample(string errorMessage) 11 | { 12 | if (errorMessage == null) 13 | { 14 | throw new ArgumentNullException("errorMessage"); 15 | } 16 | ErrorMessage = errorMessage; 17 | } 18 | 19 | public string ErrorMessage { get; private set; } 20 | 21 | public override bool Equals(object obj) 22 | { 23 | InvalidSample other = obj as InvalidSample; 24 | return other != null && ErrorMessage == other.ErrorMessage; 25 | } 26 | 27 | public override int GetHashCode() 28 | { 29 | return ErrorMessage.GetHashCode(); 30 | } 31 | 32 | public override string ToString() 33 | { 34 | return ErrorMessage; 35 | } 36 | } 37 | } -------------------------------------------------------------------------------- /WebApi/WebApi/Areas/HelpPage/SampleGeneration/SampleDirection.cs: -------------------------------------------------------------------------------- 1 | namespace WebApi.Areas.HelpPage 2 | { 3 | /// 4 | /// Indicates whether the sample is used for request or response 5 | /// 6 | public enum SampleDirection 7 | { 8 | Request = 0, 9 | Response 10 | } 11 | } -------------------------------------------------------------------------------- /WebApi/WebApi/Areas/HelpPage/SampleGeneration/TextSample.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace WebApi.Areas.HelpPage 4 | { 5 | /// 6 | /// This represents a preformatted text sample on the help page. There's a display template named TextSample associated with this class. 7 | /// 8 | public class TextSample 9 | { 10 | public TextSample(string text) 11 | { 12 | if (text == null) 13 | { 14 | throw new ArgumentNullException("text"); 15 | } 16 | Text = text; 17 | } 18 | 19 | public string Text { get; private set; } 20 | 21 | public override bool Equals(object obj) 22 | { 23 | TextSample other = obj as TextSample; 24 | return other != null && Text == other.Text; 25 | } 26 | 27 | public override int GetHashCode() 28 | { 29 | return Text.GetHashCode(); 30 | } 31 | 32 | public override string ToString() 33 | { 34 | return Text; 35 | } 36 | } 37 | } -------------------------------------------------------------------------------- /WebApi/WebApi/Areas/HelpPage/TestClient.css: -------------------------------------------------------------------------------- 1 | .httpMethod { 2 | width: 20%; 3 | } 4 | 5 | .uriPath { 6 | width: 70%; 7 | } 8 | 9 | .sampleArea { 10 | width: 95%; 11 | } 12 | 13 | #testClientButton { 14 | position: fixed; 15 | right: 0; 16 | bottom: 0; 17 | width: 150px; 18 | font-size: x-large; 19 | } 20 | 21 | select { 22 | margin-top: 10px; 23 | } 24 | 25 | .panel { 26 | max-height: 120px; 27 | overflow: auto; 28 | } 29 | 30 | .panel input { 31 | width: 150px; 32 | } 33 | 34 | .uriParameterLabel { 35 | width: 100px; 36 | float: left; 37 | border: none; 38 | } -------------------------------------------------------------------------------- /WebApi/WebApi/Areas/HelpPage/Views/Help/Api.cshtml: -------------------------------------------------------------------------------- 1 | @using System.Web.Http 2 | @using WebApi.Areas.HelpPage.Models 3 | @model HelpPageApiModel 4 | 5 | @{ 6 | var description = Model.ApiDescription; 7 | ViewBag.Title = description.HttpMethod.Method + " " + description.RelativePath; 8 | } 9 | 10 |
11 | 18 |
19 | @Html.DisplayFor(m => Model) 20 |
21 |
22 | 23 | @Html.DisplayForModel("TestClientDialogs") 24 | @section Scripts { 25 | @Html.DisplayForModel("TestClientReferences") 26 | 27 | } -------------------------------------------------------------------------------- /WebApi/WebApi/Areas/HelpPage/Views/Help/DisplayTemplates/ApiGroup.cshtml: -------------------------------------------------------------------------------- 1 | @using System.Web.Http 2 | @using System.Web.Http.Description 3 | @using WebApi.Areas.HelpPage 4 | @using WebApi.Areas.HelpPage.Models 5 | @model IGrouping 6 | 7 |

@Model.Key

8 | 9 | 10 | 11 | 12 | 13 | @foreach (var api in Model) 14 | { 15 | 16 | 17 | 27 | 28 | } 29 | 30 |
APIDescription
@api.HttpMethod.Method @api.RelativePath 18 | @if (api.Documentation != null) 19 | { 20 |

@api.Documentation

21 | } 22 | else 23 | { 24 |

No documentation available.

25 | } 26 |
-------------------------------------------------------------------------------- /WebApi/WebApi/Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml: -------------------------------------------------------------------------------- 1 | @using WebApi.Areas.HelpPage 2 | @model ImageSample 3 | 4 | -------------------------------------------------------------------------------- /WebApi/WebApi/Areas/HelpPage/Views/Help/DisplayTemplates/InvalidSample.cshtml: -------------------------------------------------------------------------------- 1 | @using WebApi.Areas.HelpPage 2 | @model InvalidSample 3 | 4 | @if (HttpContext.Current.IsDebuggingEnabled) 5 | { 6 |
7 |

@Model.ErrorMessage

8 |
9 | } 10 | else 11 | { 12 |

Sample not available.

13 | } -------------------------------------------------------------------------------- /WebApi/WebApi/Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml: -------------------------------------------------------------------------------- 1 | @using System.Net.Http.Headers 2 | @model Dictionary 3 | 4 | @{ 5 | // Group the samples into a single tab if they are the same. 6 | Dictionary samples = Model.GroupBy(pair => pair.Value).ToDictionary( 7 | pair => String.Join(", ", pair.Select(m => m.Key.ToString()).ToArray()), 8 | pair => pair.Key); 9 | var mediaTypes = samples.Keys; 10 | } 11 |
12 | @foreach (var mediaType in mediaTypes) 13 | { 14 |

@mediaType

15 |
16 | Sample: 17 | @{ 18 | var sample = samples[mediaType]; 19 | if (sample == null) 20 | { 21 |

Sample not available.

22 | } 23 | else 24 | { 25 | @Html.DisplayFor(s => sample); 26 | } 27 | } 28 |
29 | } 30 |
-------------------------------------------------------------------------------- /WebApi/WebApi/Areas/HelpPage/Views/Help/DisplayTemplates/TestClientReferences.cshtml: -------------------------------------------------------------------------------- 1 | @using System.Text.RegularExpressions 2 | 3 | 4 | @* Automatically grabs the installed version of JQuery/JQueryUI/KnockoutJS *@ 5 | @{var filePattern = @"(jquery-[0-9]+.[0-9]+.[0-9]+.js|jquery-ui-[0-9]+.[0-9]+.[0-9]+.js|knockout-[0-9]+.[0-9]+.[0-9]+.js)";} 6 | @foreach (var item in Directory.GetFiles(Server.MapPath(@"~/Scripts")).Where(f => Regex.IsMatch(f, filePattern))) 7 | { 8 | 9 | } 10 | -------------------------------------------------------------------------------- /WebApi/WebApi/Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml: -------------------------------------------------------------------------------- 1 | @using WebApi.Areas.HelpPage 2 | @model TextSample 3 | 4 |
5 | @Model.Text
6 | 
-------------------------------------------------------------------------------- /WebApi/WebApi/Areas/HelpPage/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | @ViewBag.Title 7 | @RenderSection("scripts", required: false) 8 | 9 | 10 | @RenderBody() 11 | 12 | -------------------------------------------------------------------------------- /WebApi/WebApi/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 = "~/Areas/HelpPage/Views/Shared/_Layout.cshtml"; 4 | } -------------------------------------------------------------------------------- /WebApi/WebApi/Bootstrapper.cs: -------------------------------------------------------------------------------- 1 | using System.Web.Http; 2 | //using DataModel.UnitOfWork; 3 | using Microsoft.Practices.Unity; 4 | using Resolver; 5 | using Unity.Mvc3; 6 | 7 | namespace WebApi 8 | { 9 | public static class Bootstrapper 10 | { 11 | public static void Initialise() 12 | { 13 | var container = BuildUnityContainer(); 14 | 15 | System.Web.Mvc.DependencyResolver.SetResolver(new UnityDependencyResolver(container)); 16 | 17 | // register dependency resolver for WebAPI RC 18 | GlobalConfiguration.Configuration.DependencyResolver = new Unity.WebApi.UnityDependencyResolver(container); 19 | } 20 | 21 | private static IUnityContainer BuildUnityContainer() 22 | { 23 | var container = new UnityContainer(); 24 | RegisterTypes(container); 25 | return container; 26 | } 27 | 28 | public static void RegisterTypes(IUnityContainer container) 29 | { 30 | 31 | //Component initialization via MEF 32 | ComponentLoader.LoadContainer(container, ".\\bin", "WebApi.dll"); 33 | ComponentLoader.LoadContainer(container, ".\\bin", "BusinessServices.dll"); 34 | 35 | } 36 | } 37 | } -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/Content/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/Content/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/Content/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/Content/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/Content/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/jquery.ui.accordion.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Accordion 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Accordion#theming 10 | */ 11 | .ui-accordion .ui-accordion-header { display: block; cursor: pointer; position: relative; margin-top: 2px; padding: .5em .5em .5em .7em; zoom: 1; } 12 | .ui-accordion .ui-accordion-icons { padding-left: 2.2em; } 13 | .ui-accordion .ui-accordion-noicons { padding-left: .7em; } 14 | .ui-accordion .ui-accordion-icons .ui-accordion-icons { padding-left: 2.2em; } 15 | .ui-accordion .ui-accordion-header .ui-accordion-header-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; } 16 | .ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; overflow: auto; zoom: 1; } 17 | -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Theming 10 | */ 11 | @import "jquery.ui.base.css"; 12 | @import "jquery.ui.theme.css"; 13 | -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/jquery.ui.autocomplete.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Autocomplete 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Autocomplete#theming 10 | */ 11 | .ui-autocomplete { 12 | position: absolute; 13 | top: 0; /* #8656 */ 14 | cursor: default; 15 | } 16 | 17 | /* workarounds */ 18 | * html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */ 19 | -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/jquery.ui.base.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Theming 10 | */ 11 | @import url("jquery.ui.core.css"); 12 | 13 | @import url("jquery.ui.accordion.css"); 14 | @import url("jquery.ui.autocomplete.css"); 15 | @import url("jquery.ui.button.css"); 16 | @import url("jquery.ui.datepicker.css"); 17 | @import url("jquery.ui.dialog.css"); 18 | @import url("jquery.ui.menu.css"); 19 | @import url("jquery.ui.progressbar.css"); 20 | @import url("jquery.ui.resizable.css"); 21 | @import url("jquery.ui.selectable.css"); 22 | @import url("jquery.ui.slider.css"); 23 | @import url("jquery.ui.spinner.css"); 24 | @import url("jquery.ui.tabs.css"); 25 | @import url("jquery.ui.tooltip.css"); 26 | -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Progressbar 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Progressbar#theming 10 | */ 11 | .ui-progressbar { height:2em; text-align: left; overflow: hidden; } 12 | .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; } -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/jquery.ui.selectable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Selectable 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Selectable#theming 10 | */ 11 | .ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; } 12 | -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/jquery.ui.spinner.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Spinner 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Spinner#theming 10 | */ 11 | .ui-spinner { position:relative; display: inline-block; overflow: hidden; padding: 0; vertical-align: middle; } 12 | .ui-spinner-input { border: none; background: none; padding: 0; margin: .2em 0; vertical-align: middle; margin-left: .4em; margin-right: 22px; } 13 | .ui-spinner-button { width: 16px; height: 50%; font-size: .5em; padding: 0; margin: 0; text-align: center; position: absolute; cursor: default; display: block; overflow: hidden; right: 0; } 14 | .ui-spinner a.ui-spinner-button { border-top: none; border-bottom: none; border-right: none; } /* more specificity required here to overide default borders */ 15 | .ui-spinner .ui-icon { position: absolute; margin-top: -8px; top: 50%; left: 0; } /* vertical centre icon */ 16 | .ui-spinner-up { top: 0; } 17 | .ui-spinner-down { bottom: 0; } 18 | 19 | /* TR overrides */ 20 | .ui-spinner .ui-icon-triangle-1-s { 21 | /* need to fix icons sprite */ 22 | background-position:-65px -16px; 23 | } 24 | -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/jquery.ui.tooltip.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Tooltip 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | */ 9 | .ui-tooltip { 10 | padding: 8px; 11 | position: absolute; 12 | z-index: 9999; 13 | max-width: 300px; 14 | -webkit-box-shadow: 0 0 5px #aaa; 15 | box-shadow: 0 0 5px #aaa; 16 | } 17 | /* Fades and background-images don't work well together in IE6, drop the image */ 18 | * html .ui-tooltip { 19 | background-image: none; 20 | } 21 | body .ui-tooltip { border-width: 2px; } 22 | -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/minified/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/Content/themes/base/minified/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/minified/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/Content/themes/base/minified/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/minified/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/Content/themes/base/minified/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/minified/jquery.ui.accordion.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.accordion.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin-top:2px;padding:.5em .5em .5em .7em;zoom:1}.ui-accordion .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-noicons{padding-left:.7em}.ui-accordion .ui-accordion-icons .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-header .ui-accordion-header-icon{position:absolute;left:.5em;top:50%;margin-top:-8px}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto;zoom:1} -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/minified/jquery.ui.autocomplete.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.autocomplete.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-autocomplete{position:absolute;top:0;cursor:default}* html .ui-autocomplete{width:1px} -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/minified/jquery.ui.core.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.core.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-helper-hidden{display:none}.ui-helper-hidden-accessible{position:absolute!important;clip:rect(1px);clip:rect(1px,1px,1px,1px)}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{zoom:1}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:absolute;top:0;left:0;width:100%;height:100%} -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/minified/jquery.ui.dialog.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.dialog.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-dialog{position:absolute;padding:.2em;width:300px;overflow:hidden}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 16px .1em 0}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:19px;margin:-10px 0 0 0;padding:1px;height:18px}.ui-dialog .ui-dialog-titlebar-close span{display:block;margin:1px}.ui-dialog .ui-dialog-titlebar-close:hover,.ui-dialog .ui-dialog-titlebar-close:focus{padding:0}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:none;overflow:auto;zoom:1}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin:.5em 0 0 0;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-se{width:14px;height:14px;right:3px;bottom:3px}.ui-draggable .ui-dialog-titlebar{cursor:move} -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/minified/jquery.ui.menu.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.menu.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-menu{list-style:none;padding:2px;margin:0;display:block;outline:none}.ui-menu .ui-menu{margin-top:-3px;position:absolute}.ui-menu .ui-menu-item{margin:0;padding:0;zoom:1;width:100%}.ui-menu .ui-menu-divider{margin:5px -2px 5px -2px;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-menu-item a{text-decoration:none;display:block;padding:2px .4em;line-height:1.5;zoom:1;font-weight:normal}.ui-menu .ui-menu-item a.ui-state-focus,.ui-menu .ui-menu-item a.ui-state-active{font-weight:normal;margin:-1px}.ui-menu .ui-state-disabled{font-weight:normal;margin:.4em 0 .2em;line-height:1.5}.ui-menu .ui-state-disabled a{cursor:default}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item a{position:relative;padding-left:2em}.ui-menu .ui-icon{position:absolute;top:.2em;left:.2em}.ui-menu .ui-menu-icon{position:static;float:right} -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/minified/jquery.ui.progressbar.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.progressbar.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%} -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/minified/jquery.ui.resizable.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.resizable.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:0.1px;display:block}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px} -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/minified/jquery.ui.selectable.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.selectable.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black} -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/minified/jquery.ui.slider.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.slider.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0} -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/minified/jquery.ui.spinner.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.spinner.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:none;background:none;padding:0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:22px}.ui-spinner-button{width:16px;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top:none;border-bottom:none;border-right:none}.ui-spinner .ui-icon{position:absolute;margin-top:-8px;top:50%;left:0}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-spinner .ui-icon-triangle-1-s{background-position:-65px -16px} -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/minified/jquery.ui.tabs.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.tabs.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-tabs{position:relative;padding:.2em;zoom:1}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav li a{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-active a,.ui-tabs .ui-tabs-nav li.ui-state-disabled a,.ui-tabs .ui-tabs-nav li.ui-tabs-loading a{cursor:text}.ui-tabs .ui-tabs-nav li a,.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:none} -------------------------------------------------------------------------------- /WebApi/WebApi/Content/themes/base/minified/jquery.ui.tooltip.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.tooltip.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px;-webkit-box-shadow:0 0 5px #aaa;box-shadow:0 0 5px #aaa}* html .ui-tooltip{background-image:none}body .ui-tooltip{border-width:2px} -------------------------------------------------------------------------------- /WebApi/WebApi/Controllers/HomeController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | 7 | namespace WebApi.Controllers 8 | { 9 | public class HomeController : Controller 10 | { 11 | public ActionResult Index() 12 | { 13 | return View(); 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /WebApi/WebApi/ErrorHelper/ApiException.cs: -------------------------------------------------------------------------------- 1 | #region Using namespaces. 2 | using System; 3 | using System.Net; 4 | using System.Runtime.Serialization; 5 | #endregion 6 | 7 | 8 | namespace WebApi.ErrorHelper 9 | { 10 | /// 11 | /// Api Exception 12 | /// 13 | [Serializable] 14 | [DataContract] 15 | public class ApiException : Exception, IApiExceptions 16 | { 17 | #region Public Serializable properties. 18 | [DataMember] 19 | public int ErrorCode { get; set; } 20 | [DataMember] 21 | public string ErrorDescription { get; set; } 22 | [DataMember] 23 | public HttpStatusCode HttpStatus { get; set; } 24 | 25 | string reasonPhrase = "ApiException"; 26 | 27 | [DataMember] 28 | public string ReasonPhrase 29 | { 30 | get { return this.reasonPhrase; } 31 | 32 | set { this.reasonPhrase = value; } 33 | } 34 | #endregion 35 | } 36 | } -------------------------------------------------------------------------------- /WebApi/WebApi/ErrorHelper/IApiExceptions.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Net; 6 | 7 | namespace WebApi.ErrorHelper 8 | { 9 | /// 10 | /// IApiExceptions Interface 11 | /// 12 | public interface IApiExceptions 13 | { 14 | /// 15 | /// ErrorCode 16 | /// 17 | int ErrorCode { get; set; } 18 | /// 19 | /// ErrorDescription 20 | /// 21 | string ErrorDescription { get; set; } 22 | /// 23 | /// HttpStatus 24 | /// 25 | HttpStatusCode HttpStatus { get; set; } 26 | /// 27 | /// ReasonPhrase 28 | /// 29 | string ReasonPhrase { get; set; } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /WebApi/WebApi/Filters/BasicAuthenticationIdentity.cs: -------------------------------------------------------------------------------- 1 | using System.Security.Principal; 2 | 3 | namespace WebApi.Filters 4 | { 5 | /// 6 | /// Basic Authentication identity 7 | /// 8 | public class BasicAuthenticationIdentity : GenericIdentity 9 | { 10 | /// 11 | /// Get/Set for password 12 | /// 13 | public string Password { get; set; } 14 | /// 15 | /// Get/Set for UserName 16 | /// 17 | public string UserName { get; set; } 18 | /// 19 | /// Get/Set for UserId 20 | /// 21 | public int UserId { get; set; } 22 | 23 | /// 24 | /// Basic Authentication Identity Constructor 25 | /// 26 | /// 27 | /// 28 | public BasicAuthenticationIdentity(string userName, string password) 29 | : base(userName, "Basic") 30 | { 31 | Password = password; 32 | UserName = userName; 33 | } 34 | } 35 | } -------------------------------------------------------------------------------- /WebApi/WebApi/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="WebApi.WebApiApplication" Language="C#" %> 2 | -------------------------------------------------------------------------------- /WebApi/WebApi/Helpers/JSONHelper.cs: -------------------------------------------------------------------------------- 1 | #region Using namespaces. 2 | using System.Web.Script.Serialization; 3 | using System.Data; 4 | using System.Collections.Generic; 5 | using System; 6 | 7 | #endregion 8 | 9 | namespace WebApi.Helpers 10 | { 11 | public static class JSONHelper 12 | { 13 | #region Public extension methods. 14 | /// 15 | /// Extened method of object class 16 | /// Converts an object to a json string. 17 | /// 18 | /// 19 | /// 20 | public static string ToJSON(this object obj) 21 | { 22 | var serializer = new JavaScriptSerializer(); 23 | try 24 | { 25 | return serializer.Serialize(obj); 26 | } 27 | catch(Exception ex) 28 | { 29 | return ""; 30 | } 31 | } 32 | #endregion 33 | } 34 | } -------------------------------------------------------------------------------- /WebApi/WebApi/Images/accent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/Images/accent.png -------------------------------------------------------------------------------- /WebApi/WebApi/Images/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/Images/bullet.png -------------------------------------------------------------------------------- /WebApi/WebApi/Images/heroAccent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/Images/heroAccent.png -------------------------------------------------------------------------------- /WebApi/WebApi/Images/orderedList0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/Images/orderedList0.png -------------------------------------------------------------------------------- /WebApi/WebApi/Images/orderedList1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/Images/orderedList1.png -------------------------------------------------------------------------------- /WebApi/WebApi/Images/orderedList2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/Images/orderedList2.png -------------------------------------------------------------------------------- /WebApi/WebApi/Images/orderedList3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/Images/orderedList3.png -------------------------------------------------------------------------------- /WebApi/WebApi/Images/orderedList4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/Images/orderedList4.png -------------------------------------------------------------------------------- /WebApi/WebApi/Images/orderedList5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/Images/orderedList5.png -------------------------------------------------------------------------------- /WebApi/WebApi/Images/orderedList6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/Images/orderedList6.png -------------------------------------------------------------------------------- /WebApi/WebApi/Images/orderedList7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/Images/orderedList7.png -------------------------------------------------------------------------------- /WebApi/WebApi/Images/orderedList8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/Images/orderedList8.png -------------------------------------------------------------------------------- /WebApi/WebApi/Images/orderedList9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/Images/orderedList9.png -------------------------------------------------------------------------------- /WebApi/WebApi/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/Scripts/_references.js -------------------------------------------------------------------------------- /WebApi/WebApi/Unity.Mvc3.README.txt: -------------------------------------------------------------------------------- 1 | Getting started with Unity.Mvc3 2 | ------------------------------- 3 | 4 | To get started, just add a call to Bootstrapper.Initialise() in the Application_Start method of Global.asax.cs 5 | and the MVC framework will then use the Unity.Mvc3 DependencyResolver to resolve your components. 6 | 7 | There is code in the bootstrapper to initialise the Unity container. Any components that you need to inject should be 8 | registered in the BuildUnityContainer method of the Bootstrapper. All components that implement IDisposable should be 9 | registered with the HierarchicalLifetimeManager to ensure that theey are properly disposed at the end of the request. 10 | 11 | It is typically not necessary to register your controllers with Unity. 12 | 13 | You can find out more about Unity.Mvc3 by visiting: 14 | 15 | http://devtrends.co.uk/blog/introducing-the-unity.mvc3-nuget-package-to-reconcile-mvc3-unity-and-idisposable -------------------------------------------------------------------------------- /WebApi/WebApi/Unity.WebAPI.README.txt: -------------------------------------------------------------------------------- 1 | Getting started with Unity.WebAPI 2 | --------------------------------- 3 | 4 | To get started, just add a call to Bootstrapper.Initialise() in the Application_Start method of Global.asax.cs 5 | and the Web API framework will then use the Unity.WebAPI DependencyResolver to resolve your components. 6 | 7 | There is code in the bootstrapper to initialise the Unity container. Any components that you need to inject should be 8 | registered in the BuildUnityContainer method of the Bootstrapper. There is no need to register the controllers. 9 | All components that implement IDisposable should be registered with the HierarchicalLifetimeManager to ensure that they 10 | are properly disposed at the end of the request. 11 | 12 | You can find out more about Unity.WebAPI by visiting: 13 | 14 | http://devtrends.co.uk/blog/introducing-the-unity.webapi-nuget-package -------------------------------------------------------------------------------- /WebApi/WebApi/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = null; 3 | } 4 | 5 | 6 | 7 | 8 | 9 | Error 10 | 11 | 12 |

13 | Sorry, an error occurred while processing your request. 14 |

15 | 16 | -------------------------------------------------------------------------------- /WebApi/WebApi/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | @ViewBag.Title 7 | @Styles.Render("~/Content/css") 8 | @Scripts.Render("~/bundles/modernizr") 9 | 10 | 11 | @RenderBody() 12 | 13 | @Scripts.Render("~/bundles/jquery") 14 | @RenderSection("scripts", required: false) 15 | 16 | 17 | -------------------------------------------------------------------------------- /WebApi/WebApi/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /WebApi/WebApi/Web.config.uninstall.xdt: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /WebApi/WebApi/bin/Antlr3.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/Antlr3.Runtime.dll -------------------------------------------------------------------------------- /WebApi/WebApi/bin/AttributeRouting.Web.Http.WebHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/AttributeRouting.Web.Http.WebHost.dll -------------------------------------------------------------------------------- /WebApi/WebApi/bin/AttributeRouting.Web.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/AttributeRouting.Web.Http.dll -------------------------------------------------------------------------------- /WebApi/WebApi/bin/AttributeRouting.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/AttributeRouting.Web.dll -------------------------------------------------------------------------------- /WebApi/WebApi/bin/AttributeRouting.Web.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | AttributeRouting.Web 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /WebApi/WebApi/bin/AttributeRouting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/AttributeRouting.dll -------------------------------------------------------------------------------- /WebApi/WebApi/bin/AutoMapper.Net4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/AutoMapper.Net4.dll -------------------------------------------------------------------------------- /WebApi/WebApi/bin/AutoMapper.Net4.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/AutoMapper.Net4.pdb -------------------------------------------------------------------------------- /WebApi/WebApi/bin/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/AutoMapper.dll -------------------------------------------------------------------------------- /WebApi/WebApi/bin/AutoMapper.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/AutoMapper.pdb -------------------------------------------------------------------------------- /WebApi/WebApi/bin/BusinessEntities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/BusinessEntities.dll -------------------------------------------------------------------------------- /WebApi/WebApi/bin/BusinessEntities.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/BusinessEntities.pdb -------------------------------------------------------------------------------- /WebApi/WebApi/bin/BusinessServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/BusinessServices.dll -------------------------------------------------------------------------------- /WebApi/WebApi/bin/BusinessServices.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/BusinessServices.pdb -------------------------------------------------------------------------------- /WebApi/WebApi/bin/DataModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/DataModel.dll -------------------------------------------------------------------------------- /WebApi/WebApi/bin/DataModel.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/DataModel.pdb -------------------------------------------------------------------------------- /WebApi/WebApi/bin/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/EntityFramework.dll -------------------------------------------------------------------------------- /WebApi/WebApi/bin/Microsoft.Practices.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/Microsoft.Practices.ServiceLocation.dll -------------------------------------------------------------------------------- /WebApi/WebApi/bin/Microsoft.Practices.ServiceLocation.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/Microsoft.Practices.ServiceLocation.pdb -------------------------------------------------------------------------------- /WebApi/WebApi/bin/Microsoft.Practices.Unity.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/Microsoft.Practices.Unity.Configuration.dll -------------------------------------------------------------------------------- /WebApi/WebApi/bin/Microsoft.Practices.Unity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/Microsoft.Practices.Unity.dll -------------------------------------------------------------------------------- /WebApi/WebApi/bin/Microsoft.Web.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/Microsoft.Web.Infrastructure.dll -------------------------------------------------------------------------------- /WebApi/WebApi/bin/NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/NLog.dll -------------------------------------------------------------------------------- /WebApi/WebApi/bin/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /WebApi/WebApi/bin/Resolver.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/Resolver.dll -------------------------------------------------------------------------------- /WebApi/WebApi/bin/Resolver.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/Resolver.pdb -------------------------------------------------------------------------------- /WebApi/WebApi/bin/System.Net.Http.Formatting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/System.Net.Http.Formatting.dll -------------------------------------------------------------------------------- /WebApi/WebApi/bin/System.Net.Http.WebRequest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/System.Net.Http.WebRequest.dll -------------------------------------------------------------------------------- /WebApi/WebApi/bin/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/System.Net.Http.dll -------------------------------------------------------------------------------- /WebApi/WebApi/bin/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/System.Web.Helpers.dll -------------------------------------------------------------------------------- /WebApi/WebApi/bin/System.Web.Http.WebHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/System.Web.Http.WebHost.dll -------------------------------------------------------------------------------- /WebApi/WebApi/bin/System.Web.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/System.Web.Http.dll -------------------------------------------------------------------------------- /WebApi/WebApi/bin/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/System.Web.Mvc.dll -------------------------------------------------------------------------------- /WebApi/WebApi/bin/System.Web.Optimization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/System.Web.Optimization.dll -------------------------------------------------------------------------------- /WebApi/WebApi/bin/System.Web.Providers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/System.Web.Providers.dll -------------------------------------------------------------------------------- /WebApi/WebApi/bin/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/System.Web.Razor.dll -------------------------------------------------------------------------------- /WebApi/WebApi/bin/System.Web.WebPages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/System.Web.WebPages.Deployment.dll -------------------------------------------------------------------------------- /WebApi/WebApi/bin/System.Web.WebPages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/System.Web.WebPages.Razor.dll -------------------------------------------------------------------------------- /WebApi/WebApi/bin/System.Web.WebPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/System.Web.WebPages.dll -------------------------------------------------------------------------------- /WebApi/WebApi/bin/Unity.Mvc3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/Unity.Mvc3.dll -------------------------------------------------------------------------------- /WebApi/WebApi/bin/Unity.WebApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/Unity.WebApi.dll -------------------------------------------------------------------------------- /WebApi/WebApi/bin/WebActivator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/WebActivator.dll -------------------------------------------------------------------------------- /WebApi/WebApi/bin/WebActivator.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/WebActivator.pdb -------------------------------------------------------------------------------- /WebApi/WebApi/bin/WebApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/WebApi.dll -------------------------------------------------------------------------------- /WebApi/WebApi/bin/WebApi.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/WebApi.pdb -------------------------------------------------------------------------------- /WebApi/WebApi/bin/WebGrease.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/bin/WebGrease.dll -------------------------------------------------------------------------------- /WebApi/WebApi/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/favicon.ico -------------------------------------------------------------------------------- /WebApi/WebApi/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /WebApi/WebApi/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /WebApi/WebApi/obj/Debug/WebApi.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/obj/Debug/WebApi.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /WebApi/WebApi/obj/Debug/WebApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/obj/Debug/WebApi.dll -------------------------------------------------------------------------------- /WebApi/WebApi/obj/Debug/WebApi.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/WebApi/obj/Debug/WebApi.pdb -------------------------------------------------------------------------------- /WebApi/packages/AttributeRouting.Core.3.5.6/AttributeRouting.Core.3.5.6.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AttributeRouting.Core.3.5.6/AttributeRouting.Core.3.5.6.nupkg -------------------------------------------------------------------------------- /WebApi/packages/AttributeRouting.Core.3.5.6/lib/net40/AttributeRouting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AttributeRouting.Core.3.5.6/lib/net40/AttributeRouting.dll -------------------------------------------------------------------------------- /WebApi/packages/AttributeRouting.Core.Http.3.5.6/AttributeRouting.Core.Http.3.5.6.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AttributeRouting.Core.Http.3.5.6/AttributeRouting.Core.Http.3.5.6.nupkg -------------------------------------------------------------------------------- /WebApi/packages/AttributeRouting.Core.Http.3.5.6/lib/net40/AttributeRouting.Web.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AttributeRouting.Core.Http.3.5.6/lib/net40/AttributeRouting.Web.Http.dll -------------------------------------------------------------------------------- /WebApi/packages/AttributeRouting.Core.Web.3.5.6/AttributeRouting.Core.Web.3.5.6.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AttributeRouting.Core.Web.3.5.6/AttributeRouting.Core.Web.3.5.6.nupkg -------------------------------------------------------------------------------- /WebApi/packages/AttributeRouting.Core.Web.3.5.6/lib/net40/AttributeRouting.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AttributeRouting.Core.Web.3.5.6/lib/net40/AttributeRouting.Web.dll -------------------------------------------------------------------------------- /WebApi/packages/AttributeRouting.Core.Web.3.5.6/lib/net40/AttributeRouting.Web.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | AttributeRouting.Web 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /WebApi/packages/AttributeRouting.WebApi.3.5.6/AttributeRouting.WebApi.3.5.6.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AttributeRouting.WebApi.3.5.6/AttributeRouting.WebApi.3.5.6.nupkg -------------------------------------------------------------------------------- /WebApi/packages/AttributeRouting.WebApi.3.5.6/content/App_Start/AttributeRoutingHttpConfig.cs.pp: -------------------------------------------------------------------------------- 1 | using System.Web.Http; 2 | using AttributeRouting.Web.Http.WebHost; 3 | 4 | [assembly: WebActivator.PreApplicationStartMethod(typeof($rootnamespace$.AttributeRoutingHttpConfig), "Start")] 5 | 6 | namespace $rootnamespace$ 7 | { 8 | public static class AttributeRoutingHttpConfig 9 | { 10 | public static void RegisterRoutes(HttpRouteCollection routes) 11 | { 12 | // See http://github.com/mccalltd/AttributeRouting/wiki for more options. 13 | // To debug routes locally using the built in ASP.NET development server, go to /routes.axd 14 | 15 | routes.MapHttpAttributeRoutes(); 16 | } 17 | 18 | public static void Start() 19 | { 20 | RegisterRoutes(GlobalConfiguration.Configuration.Routes); 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /WebApi/packages/AttributeRouting.WebApi.3.5.6/content/App_Start/AttributeRoutingHttpConfig.vb.pp: -------------------------------------------------------------------------------- 1 | Imports System.Web.Http 2 | Imports AttributeRouting.Web.Http.WebHost 3 | 4 | 5 | 6 | Namespace $rootnamespace$ 7 | Public Class AttributeRoutingHttpConfig 8 | Public Shared Sub RegisterRoutes(routes As HttpRouteCollection) 9 | 10 | ' See http://github.com/mccalltd/AttributeRouting/wiki for more options. 11 | ' To debug routes locally using the built in ASP.NET development server, go to /routes.axd 12 | 13 | routes.MapHttpAttributeRoutes() 14 | End Sub 15 | 16 | Public Shared Sub Start() 17 | RegisterRoutes(GlobalConfiguration.Configuration.Routes) 18 | End Sub 19 | End Class 20 | End Namespace 21 | -------------------------------------------------------------------------------- /WebApi/packages/AttributeRouting.WebApi.3.5.6/content/web.config.transform: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /WebApi/packages/AttributeRouting.WebApi.3.5.6/lib/net40/AttributeRouting.Web.Http.WebHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AttributeRouting.WebApi.3.5.6/lib/net40/AttributeRouting.Web.Http.WebHost.dll -------------------------------------------------------------------------------- /WebApi/packages/AttributeRouting.WebApi.3.5.6/readme.txt: -------------------------------------------------------------------------------- 1 | AttributeRouting v3.* 2 | 3 | Upgrading from v2 or v1? Please read about breaking changes here: 4 | 5 | https://github.com/mccalltd/AttributeRouting/wiki/Upgrading-to-v3 6 | -------------------------------------------------------------------------------- /WebApi/packages/AttributeRouting.WebApi.3.5.6/tools/install.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | $appStartTemplatesFolder = $project.ProjectItems.Item("App_Start"); 4 | 5 | # Remove the App_Start file for other languages 6 | if ($project.Type -eq "C#") { 7 | $appStartTemplatesFolder.ProjectItems.Item("AttributeRoutingHttpConfig.vb").Delete(); 8 | } elseif ($project.Type -eq "VB.NET") { 9 | $appStartTemplatesFolder.ProjectItems.Item("AttributeRoutingHttpConfig.cs").Delete(); 10 | } -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/AutoMapper.3.3.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AutoMapper.3.3.1/AutoMapper.3.3.1.nupkg -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/lib/MonoAndroid/AutoMapper.Android.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AutoMapper.3.3.1/lib/MonoAndroid/AutoMapper.Android.dll -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/lib/MonoAndroid/AutoMapper.Android.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AutoMapper.3.3.1/lib/MonoAndroid/AutoMapper.Android.pdb -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/lib/MonoAndroid/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AutoMapper.3.3.1/lib/MonoAndroid/AutoMapper.dll -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/lib/MonoAndroid/AutoMapper.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AutoMapper.3.3.1/lib/MonoAndroid/AutoMapper.pdb -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/lib/MonoTouch/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AutoMapper.3.3.1/lib/MonoTouch/AutoMapper.dll -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/lib/MonoTouch/AutoMapper.iOS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AutoMapper.3.3.1/lib/MonoTouch/AutoMapper.iOS.dll -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/lib/MonoTouch/AutoMapper.iOS.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AutoMapper.3.3.1/lib/MonoTouch/AutoMapper.iOS.pdb -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/lib/MonoTouch/AutoMapper.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AutoMapper.3.3.1/lib/MonoTouch/AutoMapper.pdb -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/lib/net40/AutoMapper.Net4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AutoMapper.3.3.1/lib/net40/AutoMapper.Net4.dll -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/lib/net40/AutoMapper.Net4.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AutoMapper.3.3.1/lib/net40/AutoMapper.Net4.pdb -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/lib/net40/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AutoMapper.3.3.1/lib/net40/AutoMapper.dll -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/lib/net40/AutoMapper.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AutoMapper.3.3.1/lib/net40/AutoMapper.pdb -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/lib/portable-windows8+net40+wp8+sl5+MonoAndroid+MonoTouch/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AutoMapper.3.3.1/lib/portable-windows8+net40+wp8+sl5+MonoAndroid+MonoTouch/AutoMapper.dll -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/lib/portable-windows8+net40+wp8+sl5+MonoAndroid+MonoTouch/AutoMapper.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AutoMapper.3.3.1/lib/portable-windows8+net40+wp8+sl5+MonoAndroid+MonoTouch/AutoMapper.pdb -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/lib/portable-windows8+net40+wp8+wpa81+sl5+MonoAndroid+MonoTouch/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AutoMapper.3.3.1/lib/portable-windows8+net40+wp8+wpa81+sl5+MonoAndroid+MonoTouch/AutoMapper.dll -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/lib/portable-windows8+net40+wp8+wpa81+sl5+MonoAndroid+MonoTouch/AutoMapper.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AutoMapper.3.3.1/lib/portable-windows8+net40+wp8+wpa81+sl5+MonoAndroid+MonoTouch/AutoMapper.pdb -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/lib/sl5/AutoMapper.SL5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AutoMapper.3.3.1/lib/sl5/AutoMapper.SL5.dll -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/lib/sl5/AutoMapper.SL5.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AutoMapper.3.3.1/lib/sl5/AutoMapper.SL5.pdb -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/lib/sl5/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AutoMapper.3.3.1/lib/sl5/AutoMapper.dll -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/lib/sl5/AutoMapper.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AutoMapper.3.3.1/lib/sl5/AutoMapper.pdb -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/lib/windows8/AutoMapper.WinRT.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AutoMapper.3.3.1/lib/windows8/AutoMapper.WinRT.dll -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/lib/windows8/AutoMapper.WinRT.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AutoMapper.3.3.1/lib/windows8/AutoMapper.WinRT.pdb -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/lib/windows8/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AutoMapper.3.3.1/lib/windows8/AutoMapper.dll -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/lib/windows8/AutoMapper.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AutoMapper.3.3.1/lib/windows8/AutoMapper.pdb -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/lib/wp8/AutoMapper.WP8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AutoMapper.3.3.1/lib/wp8/AutoMapper.WP8.dll -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/lib/wp8/AutoMapper.WP8.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AutoMapper.3.3.1/lib/wp8/AutoMapper.WP8.pdb -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/lib/wp8/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AutoMapper.3.3.1/lib/wp8/AutoMapper.dll -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/lib/wp8/AutoMapper.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AutoMapper.3.3.1/lib/wp8/AutoMapper.pdb -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/lib/wpa81/AutoMapper.WPA81.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AutoMapper.3.3.1/lib/wpa81/AutoMapper.WPA81.dll -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/lib/wpa81/AutoMapper.WPA81.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AutoMapper.3.3.1/lib/wpa81/AutoMapper.WPA81.pdb -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/lib/wpa81/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AutoMapper.3.3.1/lib/wpa81/AutoMapper.dll -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/lib/wpa81/AutoMapper.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/AutoMapper.3.3.1/lib/wpa81/AutoMapper.pdb -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/tools/AutoMapper.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | 9 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | PreserveNewest 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/tools/MonoAndroid/uninstall.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | # Need to load MSBuild assembly if it's not loaded yet. 4 | Add-Type -AssemblyName 'Microsoft.Build, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' 5 | 6 | # Grab the loaded MSBuild project for the project 7 | $msbuild = [Microsoft.Build.Evaluation.ProjectCollection]::GlobalProjectCollection.GetLoadedProjects($project.FullName) | Select-Object -First 1 8 | 9 | # Find all the imports and targets added by this package. 10 | $itemsToRemove = @() 11 | 12 | # Allow many in case a past package was incorrectly uninstalled 13 | $itemsToRemove += $msbuild.Xml.Imports | Where-Object { $_.Project.EndsWith($package.Id + '.targets') } 14 | 15 | # Remove the elements and save the project 16 | if ($itemsToRemove -and $itemsToRemove.length) 17 | { 18 | foreach ($itemToRemove in $itemsToRemove) 19 | { 20 | $msbuild.Xml.RemoveChild($itemToRemove) | out-null 21 | } 22 | 23 | $project.Save() 24 | } -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/tools/MonoTouch/uninstall.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | # Need to load MSBuild assembly if it's not loaded yet. 4 | Add-Type -AssemblyName 'Microsoft.Build, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' 5 | 6 | # Grab the loaded MSBuild project for the project 7 | $msbuild = [Microsoft.Build.Evaluation.ProjectCollection]::GlobalProjectCollection.GetLoadedProjects($project.FullName) | Select-Object -First 1 8 | 9 | # Find all the imports and targets added by this package. 10 | $itemsToRemove = @() 11 | 12 | # Allow many in case a past package was incorrectly uninstalled 13 | $itemsToRemove += $msbuild.Xml.Imports | Where-Object { $_.Project.EndsWith($package.Id + '.targets') } 14 | 15 | # Remove the elements and save the project 16 | if ($itemsToRemove -and $itemsToRemove.length) 17 | { 18 | foreach ($itemToRemove in $itemsToRemove) 19 | { 20 | $msbuild.Xml.RemoveChild($itemToRemove) | out-null 21 | } 22 | 23 | $project.Save() 24 | } -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/tools/net40/uninstall.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | # Need to load MSBuild assembly if it's not loaded yet. 4 | Add-Type -AssemblyName 'Microsoft.Build, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' 5 | 6 | # Grab the loaded MSBuild project for the project 7 | $msbuild = [Microsoft.Build.Evaluation.ProjectCollection]::GlobalProjectCollection.GetLoadedProjects($project.FullName) | Select-Object -First 1 8 | 9 | # Find all the imports and targets added by this package. 10 | $itemsToRemove = @() 11 | 12 | # Allow many in case a past package was incorrectly uninstalled 13 | $itemsToRemove += $msbuild.Xml.Imports | Where-Object { $_.Project.EndsWith($package.Id + '.targets') } 14 | 15 | # Remove the elements and save the project 16 | if ($itemsToRemove -and $itemsToRemove.length) 17 | { 18 | foreach ($itemToRemove in $itemsToRemove) 19 | { 20 | $msbuild.Xml.RemoveChild($itemToRemove) | out-null 21 | } 22 | 23 | $project.Save() 24 | } -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/tools/sl5/uninstall.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | # Need to load MSBuild assembly if it's not loaded yet. 4 | Add-Type -AssemblyName 'Microsoft.Build, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' 5 | 6 | # Grab the loaded MSBuild project for the project 7 | $msbuild = [Microsoft.Build.Evaluation.ProjectCollection]::GlobalProjectCollection.GetLoadedProjects($project.FullName) | Select-Object -First 1 8 | 9 | # Find all the imports and targets added by this package. 10 | $itemsToRemove = @() 11 | 12 | # Allow many in case a past package was incorrectly uninstalled 13 | $itemsToRemove += $msbuild.Xml.Imports | Where-Object { $_.Project.EndsWith($package.Id + '.targets') } 14 | 15 | # Remove the elements and save the project 16 | if ($itemsToRemove -and $itemsToRemove.length) 17 | { 18 | foreach ($itemToRemove in $itemsToRemove) 19 | { 20 | $msbuild.Xml.RemoveChild($itemToRemove) | out-null 21 | } 22 | 23 | $project.Save() 24 | } -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/tools/windows8/uninstall.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | # Need to load MSBuild assembly if it's not loaded yet. 4 | Add-Type -AssemblyName 'Microsoft.Build, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' 5 | 6 | # Grab the loaded MSBuild project for the project 7 | $msbuild = [Microsoft.Build.Evaluation.ProjectCollection]::GlobalProjectCollection.GetLoadedProjects($project.FullName) | Select-Object -First 1 8 | 9 | # Find all the imports and targets added by this package. 10 | $itemsToRemove = @() 11 | 12 | # Allow many in case a past package was incorrectly uninstalled 13 | $itemsToRemove += $msbuild.Xml.Imports | Where-Object { $_.Project.EndsWith($package.Id + '.targets') } 14 | 15 | # Remove the elements and save the project 16 | if ($itemsToRemove -and $itemsToRemove.length) 17 | { 18 | foreach ($itemToRemove in $itemsToRemove) 19 | { 20 | $msbuild.Xml.RemoveChild($itemToRemove) | out-null 21 | } 22 | 23 | $project.Save() 24 | } -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/tools/wp8/uninstall.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | # Need to load MSBuild assembly if it's not loaded yet. 4 | Add-Type -AssemblyName 'Microsoft.Build, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' 5 | 6 | # Grab the loaded MSBuild project for the project 7 | $msbuild = [Microsoft.Build.Evaluation.ProjectCollection]::GlobalProjectCollection.GetLoadedProjects($project.FullName) | Select-Object -First 1 8 | 9 | # Find all the imports and targets added by this package. 10 | $itemsToRemove = @() 11 | 12 | # Allow many in case a past package was incorrectly uninstalled 13 | $itemsToRemove += $msbuild.Xml.Imports | Where-Object { $_.Project.EndsWith($package.Id + '.targets') } 14 | 15 | # Remove the elements and save the project 16 | if ($itemsToRemove -and $itemsToRemove.length) 17 | { 18 | foreach ($itemToRemove in $itemsToRemove) 19 | { 20 | $msbuild.Xml.RemoveChild($itemToRemove) | out-null 21 | } 22 | 23 | $project.Save() 24 | } -------------------------------------------------------------------------------- /WebApi/packages/AutoMapper.3.3.1/tools/wpa81/uninstall.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | # Need to load MSBuild assembly if it's not loaded yet. 4 | Add-Type -AssemblyName 'Microsoft.Build, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' 5 | 6 | # Grab the loaded MSBuild project for the project 7 | $msbuild = [Microsoft.Build.Evaluation.ProjectCollection]::GlobalProjectCollection.GetLoadedProjects($project.FullName) | Select-Object -First 1 8 | 9 | # Find all the imports and targets added by this package. 10 | $itemsToRemove = @() 11 | 12 | # Allow many in case a past package was incorrectly uninstalled 13 | $itemsToRemove += $msbuild.Xml.Imports | Where-Object { $_.Project.EndsWith($package.Id + '.targets') } 14 | 15 | # Remove the elements and save the project 16 | if ($itemsToRemove -and $itemsToRemove.length) 17 | { 18 | foreach ($itemToRemove in $itemsToRemove) 19 | { 20 | $msbuild.Xml.RemoveChild($itemToRemove) | out-null 21 | } 22 | 23 | $project.Save() 24 | } -------------------------------------------------------------------------------- /WebApi/packages/CommonServiceLocator.1.0/CommonServiceLocator.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/CommonServiceLocator.1.0/CommonServiceLocator.1.0.nupkg -------------------------------------------------------------------------------- /WebApi/packages/CommonServiceLocator.1.0/lib/NET35/Microsoft.Practices.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/CommonServiceLocator.1.0/lib/NET35/Microsoft.Practices.ServiceLocation.dll -------------------------------------------------------------------------------- /WebApi/packages/CommonServiceLocator.1.0/lib/NET35/Microsoft.Practices.ServiceLocation.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/CommonServiceLocator.1.0/lib/NET35/Microsoft.Practices.ServiceLocation.pdb -------------------------------------------------------------------------------- /WebApi/packages/CommonServiceLocator.1.0/lib/SL30/Microsoft.Practices.ServiceLocation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/CommonServiceLocator.1.0/lib/SL30/Microsoft.Practices.ServiceLocation.dll -------------------------------------------------------------------------------- /WebApi/packages/EntityFramework.5.0.0/Content/App.config.transform: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /WebApi/packages/EntityFramework.5.0.0/Content/Web.config.transform: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /WebApi/packages/EntityFramework.5.0.0/EntityFramework.5.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/EntityFramework.5.0.0/EntityFramework.5.0.0.nupkg -------------------------------------------------------------------------------- /WebApi/packages/EntityFramework.5.0.0/lib/net40/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/EntityFramework.5.0.0/lib/net40/EntityFramework.dll -------------------------------------------------------------------------------- /WebApi/packages/EntityFramework.5.0.0/lib/net45/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/EntityFramework.5.0.0/lib/net45/EntityFramework.dll -------------------------------------------------------------------------------- /WebApi/packages/EntityFramework.5.0.0/tools/EntityFramework.PS3.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/EntityFramework.5.0.0/tools/EntityFramework.PS3.psd1 -------------------------------------------------------------------------------- /WebApi/packages/EntityFramework.5.0.0/tools/EntityFramework.PowerShell.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/EntityFramework.5.0.0/tools/EntityFramework.PowerShell.Utility.dll -------------------------------------------------------------------------------- /WebApi/packages/EntityFramework.5.0.0/tools/EntityFramework.PowerShell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/EntityFramework.5.0.0/tools/EntityFramework.PowerShell.dll -------------------------------------------------------------------------------- /WebApi/packages/EntityFramework.5.0.0/tools/EntityFramework.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/EntityFramework.5.0.0/tools/EntityFramework.psd1 -------------------------------------------------------------------------------- /WebApi/packages/EntityFramework.5.0.0/tools/Redirect.VS11.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /WebApi/packages/EntityFramework.5.0.0/tools/Redirect.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /WebApi/packages/EntityFramework.5.0.0/tools/about_EntityFramework.help.txt: -------------------------------------------------------------------------------- 1 | TOPIC 2 | about_EntityFramework 3 | 4 | SHORT DESCRIPTION 5 | Provides information about Entity Framework commands. 6 | 7 | LONG DESCRIPTION 8 | This topic describes the Entity Framework commands. Entity Framework is 9 | Microsoft's recommended data access technology for new applications. 10 | 11 | 12 | The following Entity Framework cmdlets are included. 13 | 14 | Cmdlet Description 15 | ----------------- --------------------------------------------------- 16 | Enable-Migrations Enables Code First Migrations in a project. 17 | 18 | Add-Migration Scaffolds a migration script for any pending model 19 | changes. 20 | 21 | Update-Database Applies any pending migrations to the database. 22 | 23 | Get-Migrations Displays the migrations that have been applied to 24 | the target database. 25 | 26 | SEE ALSO 27 | Enable-Migrations 28 | Add-Migration 29 | Update-Database 30 | Get-Migrations 31 | -------------------------------------------------------------------------------- /WebApi/packages/EntityFramework.5.0.0/tools/migrate.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/EntityFramework.5.0.0/tools/migrate.exe -------------------------------------------------------------------------------- /WebApi/packages/EntityFramework.6.1.3/EntityFramework.6.1.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/EntityFramework.6.1.3/EntityFramework.6.1.3.nupkg -------------------------------------------------------------------------------- /WebApi/packages/EntityFramework.6.1.3/content/App.config.transform: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /WebApi/packages/EntityFramework.6.1.3/content/Web.config.transform: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /WebApi/packages/EntityFramework.6.1.3/lib/net40/EntityFramework.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/EntityFramework.6.1.3/lib/net40/EntityFramework.SqlServer.dll -------------------------------------------------------------------------------- /WebApi/packages/EntityFramework.6.1.3/lib/net40/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/EntityFramework.6.1.3/lib/net40/EntityFramework.dll -------------------------------------------------------------------------------- /WebApi/packages/EntityFramework.6.1.3/lib/net45/EntityFramework.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/EntityFramework.6.1.3/lib/net45/EntityFramework.SqlServer.dll -------------------------------------------------------------------------------- /WebApi/packages/EntityFramework.6.1.3/lib/net45/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/EntityFramework.6.1.3/lib/net45/EntityFramework.dll -------------------------------------------------------------------------------- /WebApi/packages/EntityFramework.6.1.3/tools/EntityFramework.PowerShell.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/EntityFramework.6.1.3/tools/EntityFramework.PowerShell.Utility.dll -------------------------------------------------------------------------------- /WebApi/packages/EntityFramework.6.1.3/tools/EntityFramework.PowerShell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/EntityFramework.6.1.3/tools/EntityFramework.PowerShell.dll -------------------------------------------------------------------------------- /WebApi/packages/EntityFramework.6.1.3/tools/EntityFramework.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/EntityFramework.6.1.3/tools/EntityFramework.psd1 -------------------------------------------------------------------------------- /WebApi/packages/EntityFramework.6.1.3/tools/migrate.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/EntityFramework.6.1.3/tools/migrate.exe -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.AspNet.Mvc.4.0.40804.0/Microsoft.AspNet.Mvc.4.0.40804.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Microsoft.AspNet.Mvc.4.0.40804.0/Microsoft.AspNet.Mvc.4.0.40804.0.nupkg -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.AspNet.Mvc.4.0.40804.0/content/Web.config.uninstall.xdt: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.AspNet.Mvc.4.0.40804.0/lib/net40/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Microsoft.AspNet.Mvc.4.0.40804.0/lib/net40/System.Web.Mvc.dll -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.AspNet.Providers.1.2/Microsoft.AspNet.Providers.1.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Microsoft.AspNet.Providers.1.2/Microsoft.AspNet.Providers.1.2.nupkg -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.AspNet.Providers.Core.1.1/Microsoft.AspNet.Providers.Core.1.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Microsoft.AspNet.Providers.Core.1.1/Microsoft.AspNet.Providers.Core.1.1.nupkg -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.AspNet.Providers.Core.1.1/lib/net40/System.Web.Providers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Microsoft.AspNet.Providers.Core.1.1/lib/net40/System.Web.Providers.dll -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.AspNet.Providers.Core.1.1/readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Microsoft.AspNet.Providers.Core.1.1/readme.html -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.AspNet.Razor.2.0.30506.0/Microsoft.AspNet.Razor.2.0.30506.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Microsoft.AspNet.Razor.2.0.30506.0/Microsoft.AspNet.Razor.2.0.30506.0.nupkg -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.AspNet.Razor.2.0.30506.0/lib/net40/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Microsoft.AspNet.Razor.2.0.30506.0/lib/net40/System.Web.Razor.dll -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.AspNet.Web.Optimization.1.0.0/Microsoft.AspNet.Web.Optimization.1.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Microsoft.AspNet.Web.Optimization.1.0.0/Microsoft.AspNet.Web.Optimization.1.0.0.nupkg -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.AspNet.Web.Optimization.1.0.0/lib/net40/System.Web.Optimization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Microsoft.AspNet.Web.Optimization.1.0.0/lib/net40/System.Web.Optimization.dll -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.AspNet.WebApi.4.0.20710.0/Microsoft.AspNet.WebApi.4.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Microsoft.AspNet.WebApi.4.0.20710.0/Microsoft.AspNet.WebApi.4.0.20710.0.nupkg -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.AspNet.WebApi.Client.4.0.30506.0/Microsoft.AspNet.WebApi.Client.4.0.30506.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Microsoft.AspNet.WebApi.Client.4.0.30506.0/Microsoft.AspNet.WebApi.Client.4.0.30506.0.nupkg -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.AspNet.WebApi.Client.4.0.30506.0/lib/net40/System.Net.Http.Formatting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Microsoft.AspNet.WebApi.Client.4.0.30506.0/lib/net40/System.Net.Http.Formatting.dll -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.AspNet.WebApi.Core.4.0.30506.0/Microsoft.AspNet.WebApi.Core.4.0.30506.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Microsoft.AspNet.WebApi.Core.4.0.30506.0/Microsoft.AspNet.WebApi.Core.4.0.30506.0.nupkg -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.AspNet.WebApi.Core.4.0.30506.0/lib/net40/System.Web.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Microsoft.AspNet.WebApi.Core.4.0.30506.0/lib/net40/System.Web.Http.dll -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.AspNet.WebApi.HelpPage.4.0.30506/Microsoft.AspNet.WebApi.HelpPage.4.0.30506.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Microsoft.AspNet.WebApi.HelpPage.4.0.30506/Microsoft.AspNet.WebApi.HelpPage.4.0.30506.nupkg -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.AspNet.WebApi.HelpPage.4.0.30506/content/Areas/HelpPage/HelpPageAreaRegistration.cs.pp: -------------------------------------------------------------------------------- 1 | using System.Web.Http; 2 | using System.Web.Mvc; 3 | 4 | namespace $rootnamespace$.Areas.HelpPage 5 | { 6 | public class HelpPageAreaRegistration : AreaRegistration 7 | { 8 | public override string AreaName 9 | { 10 | get 11 | { 12 | return "HelpPage"; 13 | } 14 | } 15 | 16 | public override void RegisterArea(AreaRegistrationContext context) 17 | { 18 | context.MapRoute( 19 | "HelpPage_Default", 20 | "Help/{action}/{apiId}", 21 | new { controller = "Help", action = "Index", apiId = UrlParameter.Optional }); 22 | 23 | HelpPageConfig.Register(GlobalConfiguration.Configuration); 24 | } 25 | } 26 | } -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.AspNet.WebApi.HelpPage.4.0.30506/content/Areas/HelpPage/SampleGeneration/InvalidSample.cs.pp: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace $rootnamespace$.Areas.HelpPage 4 | { 5 | /// 6 | /// This represents an invalid sample on the help page. There's a display template named InvalidSample associated with this class. 7 | /// 8 | public class InvalidSample 9 | { 10 | public InvalidSample(string errorMessage) 11 | { 12 | if (errorMessage == null) 13 | { 14 | throw new ArgumentNullException("errorMessage"); 15 | } 16 | ErrorMessage = errorMessage; 17 | } 18 | 19 | public string ErrorMessage { get; private set; } 20 | 21 | public override bool Equals(object obj) 22 | { 23 | InvalidSample other = obj as InvalidSample; 24 | return other != null && ErrorMessage == other.ErrorMessage; 25 | } 26 | 27 | public override int GetHashCode() 28 | { 29 | return ErrorMessage.GetHashCode(); 30 | } 31 | 32 | public override string ToString() 33 | { 34 | return ErrorMessage; 35 | } 36 | } 37 | } -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.AspNet.WebApi.HelpPage.4.0.30506/content/Areas/HelpPage/SampleGeneration/SampleDirection.cs.pp: -------------------------------------------------------------------------------- 1 | namespace $rootnamespace$.Areas.HelpPage 2 | { 3 | /// 4 | /// Indicates whether the sample is used for request or response 5 | /// 6 | public enum SampleDirection 7 | { 8 | Request = 0, 9 | Response 10 | } 11 | } -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.AspNet.WebApi.HelpPage.4.0.30506/content/Areas/HelpPage/SampleGeneration/TextSample.cs.pp: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace $rootnamespace$.Areas.HelpPage 4 | { 5 | /// 6 | /// This represents a preformatted text sample on the help page. There's a display template named TextSample associated with this class. 7 | /// 8 | public class TextSample 9 | { 10 | public TextSample(string text) 11 | { 12 | if (text == null) 13 | { 14 | throw new ArgumentNullException("text"); 15 | } 16 | Text = text; 17 | } 18 | 19 | public string Text { get; private set; } 20 | 21 | public override bool Equals(object obj) 22 | { 23 | TextSample other = obj as TextSample; 24 | return other != null && Text == other.Text; 25 | } 26 | 27 | public override int GetHashCode() 28 | { 29 | return Text.GetHashCode(); 30 | } 31 | 32 | public override string ToString() 33 | { 34 | return Text; 35 | } 36 | } 37 | } -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.AspNet.WebApi.HelpPage.4.0.30506/content/Areas/HelpPage/Views/Help/Api.cshtml.pp: -------------------------------------------------------------------------------- 1 | @using System.Web.Http 2 | @using $rootnamespace$.Areas.HelpPage.Models 3 | @model HelpPageApiModel 4 | 5 | @{ 6 | var description = Model.ApiDescription; 7 | ViewBag.Title = description.HttpMethod.Method + " " + description.RelativePath; 8 | } 9 | 10 |
11 | 18 |
19 | @Html.DisplayFor(m => Model) 20 |
21 |
22 | 23 | @section Scripts { 24 | 25 | } -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.AspNet.WebApi.HelpPage.4.0.30506/content/Areas/HelpPage/Views/Help/DisplayTemplates/ApiGroup.cshtml.pp: -------------------------------------------------------------------------------- 1 | @using System.Web.Http 2 | @using System.Web.Http.Description 3 | @using $rootnamespace$.Areas.HelpPage 4 | @using $rootnamespace$.Areas.HelpPage.Models 5 | @model IGrouping 6 | 7 |

@Model.Key

8 | 9 | 10 | 11 | 12 | 13 | @foreach (var api in Model) 14 | { 15 | 16 | 17 | 27 | 28 | } 29 | 30 |
APIDescription
@api.HttpMethod.Method @api.RelativePath 18 | @if (api.Documentation != null) 19 | { 20 |

@api.Documentation

21 | } 22 | else 23 | { 24 |

No documentation available.

25 | } 26 |
-------------------------------------------------------------------------------- /WebApi/packages/Microsoft.AspNet.WebApi.HelpPage.4.0.30506/content/Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml.pp: -------------------------------------------------------------------------------- 1 | @using $rootnamespace$.Areas.HelpPage 2 | @model ImageSample 3 | 4 | -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.AspNet.WebApi.HelpPage.4.0.30506/content/Areas/HelpPage/Views/Help/DisplayTemplates/InvalidSample.cshtml.pp: -------------------------------------------------------------------------------- 1 | @using $rootnamespace$.Areas.HelpPage 2 | @model InvalidSample 3 | 4 | @if (HttpContext.Current.IsDebuggingEnabled) 5 | { 6 |
7 |

@Model.ErrorMessage

8 |
9 | } 10 | else 11 | { 12 |

Sample not available.

13 | } -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.AspNet.WebApi.HelpPage.4.0.30506/content/Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml.pp: -------------------------------------------------------------------------------- 1 | @using System.Net.Http.Headers 2 | @model Dictionary 3 | 4 | @{ 5 | // Group the samples into a single tab if they are the same. 6 | Dictionary samples = Model.GroupBy(pair => pair.Value).ToDictionary( 7 | pair => String.Join(", ", pair.Select(m => m.Key.ToString()).ToArray()), 8 | pair => pair.Key); 9 | var mediaTypes = samples.Keys; 10 | } 11 |
12 | @foreach (var mediaType in mediaTypes) 13 | { 14 |

@mediaType

15 |
16 | Sample: 17 | @{ 18 | var sample = samples[mediaType]; 19 | if (sample == null) 20 | { 21 |

Sample not available.

22 | } 23 | else 24 | { 25 | @Html.DisplayFor(s => sample); 26 | } 27 | } 28 |
29 | } 30 |
-------------------------------------------------------------------------------- /WebApi/packages/Microsoft.AspNet.WebApi.HelpPage.4.0.30506/content/Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml.pp: -------------------------------------------------------------------------------- 1 | @using $rootnamespace$.Areas.HelpPage 2 | @model TextSample 3 | 4 |
5 | @Model.Text
6 | 
-------------------------------------------------------------------------------- /WebApi/packages/Microsoft.AspNet.WebApi.HelpPage.4.0.30506/content/Areas/HelpPage/Views/Shared/_Layout.cshtml.pp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | @ViewBag.Title 7 | @RenderSection("scripts", required: false) 8 | 9 | 10 | @RenderBody() 11 | 12 | -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.AspNet.WebApi.HelpPage.4.0.30506/content/Areas/HelpPage/Views/_ViewStart.cshtml.pp: -------------------------------------------------------------------------------- 1 | @{ 2 | // Change the Layout path below to blend the look and feel of the help page with your existing web pages. 3 | Layout = "~/Areas/HelpPage/Views/Shared/_Layout.cshtml"; 4 | } -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.AspNet.WebApi.WebHost.4.0.30506.0/Microsoft.AspNet.WebApi.WebHost.4.0.30506.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Microsoft.AspNet.WebApi.WebHost.4.0.30506.0/Microsoft.AspNet.WebApi.WebHost.4.0.30506.0.nupkg -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.AspNet.WebApi.WebHost.4.0.30506.0/lib/net40/System.Web.Http.WebHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Microsoft.AspNet.WebApi.WebHost.4.0.30506.0/lib/net40/System.Web.Http.WebHost.dll -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.AspNet.WebPages.2.0.30506.0/Microsoft.AspNet.WebPages.2.0.30506.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Microsoft.AspNet.WebPages.2.0.30506.0/Microsoft.AspNet.WebPages.2.0.30506.0.nupkg -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.AspNet.WebPages.2.0.30506.0/lib/net40/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Microsoft.AspNet.WebPages.2.0.30506.0/lib/net40/System.Web.Helpers.dll -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.AspNet.WebPages.2.0.30506.0/lib/net40/System.Web.WebPages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Microsoft.AspNet.WebPages.2.0.30506.0/lib/net40/System.Web.WebPages.Deployment.dll -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.AspNet.WebPages.2.0.30506.0/lib/net40/System.Web.WebPages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Microsoft.AspNet.WebPages.2.0.30506.0/lib/net40/System.Web.WebPages.Razor.dll -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.AspNet.WebPages.2.0.30506.0/lib/net40/System.Web.WebPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Microsoft.AspNet.WebPages.2.0.30506.0/lib/net40/System.Web.WebPages.dll -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.Net.Http.2.0.20710.0/Microsoft.Net.Http.2.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Microsoft.Net.Http.2.0.20710.0/Microsoft.Net.Http.2.0.20710.0.nupkg -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.WebRequest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.WebRequest.dll -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.dll -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.Net.Http.2.0.20710.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.jQuery.Unobtrusive.Ajax.2.0.20710.0/Microsoft.jQuery.Unobtrusive.Ajax.2.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Microsoft.jQuery.Unobtrusive.Ajax.2.0.20710.0/Microsoft.jQuery.Unobtrusive.Ajax.2.0.20710.0.nupkg -------------------------------------------------------------------------------- /WebApi/packages/Microsoft.jQuery.Unobtrusive.Validation.2.0.20710.0/Microsoft.jQuery.Unobtrusive.Validation.2.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Microsoft.jQuery.Unobtrusive.Validation.2.0.20710.0/Microsoft.jQuery.Unobtrusive.Validation.2.0.20710.0.nupkg -------------------------------------------------------------------------------- /WebApi/packages/Modernizr.2.5.3/Modernizr.2.5.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Modernizr.2.5.3/Modernizr.2.5.3.nupkg -------------------------------------------------------------------------------- /WebApi/packages/NLog.3.1.0.0/NLog.3.1.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/NLog.3.1.0.0/NLog.3.1.0.0.nupkg -------------------------------------------------------------------------------- /WebApi/packages/NLog.3.1.0.0/NLog.3.1.0.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | NLog 5 | 3.1.0.0 6 | NLog 7 | Kim Christensen 8 | Kim Christensen 9 | http://raw.github.com/NLog/NLog/master/LICENSE.txt 10 | http://github.com/NLog/NLog/ 11 | http://nlog-project.org/N.png 12 | false 13 | NLog is a logging platform for .NET with rich log routing and management capabilities. It can help you produce and manage high-quality logs for your application regardless of its size or complexity. 14 | This package installs NLog.dll with includes core logging functionality. 15 | For your main project also need to install "NLog Configuration" package. 16 | NLog - Advanced .NET and Silverlight Logging 17 | en-US 18 | 19 | -------------------------------------------------------------------------------- /WebApi/packages/NLog.3.1.0.0/lib/net35/NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/NLog.3.1.0.0/lib/net35/NLog.dll -------------------------------------------------------------------------------- /WebApi/packages/NLog.3.1.0.0/lib/net40/NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/NLog.3.1.0.0/lib/net40/NLog.dll -------------------------------------------------------------------------------- /WebApi/packages/NLog.3.1.0.0/lib/net45/NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/NLog.3.1.0.0/lib/net45/NLog.dll -------------------------------------------------------------------------------- /WebApi/packages/NLog.3.1.0.0/lib/sl4/NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/NLog.3.1.0.0/lib/sl4/NLog.dll -------------------------------------------------------------------------------- /WebApi/packages/NLog.3.1.0.0/lib/sl5/NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/NLog.3.1.0.0/lib/sl5/NLog.dll -------------------------------------------------------------------------------- /WebApi/packages/Newtonsoft.Json.4.5.11/Newtonsoft.Json.4.5.11.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Newtonsoft.Json.4.5.11/Newtonsoft.Json.4.5.11.nupkg -------------------------------------------------------------------------------- /WebApi/packages/Newtonsoft.Json.4.5.11/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Newtonsoft.Json.4.5.11/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /WebApi/packages/Newtonsoft.Json.4.5.11/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Newtonsoft.Json.4.5.11/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /WebApi/packages/Newtonsoft.Json.4.5.11/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Newtonsoft.Json.4.5.11/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /WebApi/packages/Newtonsoft.Json.4.5.11/lib/portable-net40+sl4+wp7+win8/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Newtonsoft.Json.4.5.11/lib/portable-net40+sl4+wp7+win8/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /WebApi/packages/Newtonsoft.Json.4.5.11/lib/sl3-wp/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Newtonsoft.Json.4.5.11/lib/sl3-wp/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /WebApi/packages/Newtonsoft.Json.4.5.11/lib/sl4-windowsphone71/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Newtonsoft.Json.4.5.11/lib/sl4-windowsphone71/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /WebApi/packages/Newtonsoft.Json.4.5.11/lib/sl4/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Newtonsoft.Json.4.5.11/lib/sl4/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /WebApi/packages/Newtonsoft.Json.4.5.11/lib/winrt45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Newtonsoft.Json.4.5.11/lib/winrt45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /WebApi/packages/Unity.2.1.505.2/Unity.2.1.505.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Unity.2.1.505.2/Unity.2.1.505.2.nupkg -------------------------------------------------------------------------------- /WebApi/packages/Unity.2.1.505.2/lib/NET35/Microsoft.Practices.Unity.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Unity.2.1.505.2/lib/NET35/Microsoft.Practices.Unity.Configuration.dll -------------------------------------------------------------------------------- /WebApi/packages/Unity.2.1.505.2/lib/NET35/Microsoft.Practices.Unity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Unity.2.1.505.2/lib/NET35/Microsoft.Practices.Unity.dll -------------------------------------------------------------------------------- /WebApi/packages/Unity.2.1.505.2/lib/SL30/Microsoft.Practices.Unity.Silverlight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Unity.2.1.505.2/lib/SL30/Microsoft.Practices.Unity.Silverlight.dll -------------------------------------------------------------------------------- /WebApi/packages/Unity.2.1.505.2/tools/Utils.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Unity.2.1.505.2/tools/Utils.psm1 -------------------------------------------------------------------------------- /WebApi/packages/Unity.2.1.505.2/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Unity.2.1.505.2/tools/install.ps1 -------------------------------------------------------------------------------- /WebApi/packages/Unity.Mvc3.1.2/Build.bat: -------------------------------------------------------------------------------- 1 | nuget pack 2 | 3 | pause -------------------------------------------------------------------------------- /WebApi/packages/Unity.Mvc3.1.2/Unity.Mvc3.1.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Unity.Mvc3.1.2/Unity.Mvc3.1.2.nupkg -------------------------------------------------------------------------------- /WebApi/packages/Unity.Mvc3.1.2/content/Bootstrapper.cs.pp: -------------------------------------------------------------------------------- 1 | using System.Web.Mvc; 2 | using Microsoft.Practices.Unity; 3 | using Unity.Mvc3; 4 | 5 | namespace $rootnamespace$ 6 | { 7 | public static class Bootstrapper 8 | { 9 | public static void Initialise() 10 | { 11 | var container = BuildUnityContainer(); 12 | 13 | DependencyResolver.SetResolver(new UnityDependencyResolver(container)); 14 | } 15 | 16 | private static IUnityContainer BuildUnityContainer() 17 | { 18 | var container = new UnityContainer(); 19 | 20 | // register all your components with the container here 21 | // it is NOT necessary to register your controllers 22 | 23 | // e.g. container.RegisterType(); 24 | 25 | return container; 26 | } 27 | } 28 | } -------------------------------------------------------------------------------- /WebApi/packages/Unity.Mvc3.1.2/content/Unity.Mvc3.README.txt: -------------------------------------------------------------------------------- 1 | Getting started with Unity.Mvc3 2 | ------------------------------- 3 | 4 | To get started, just add a call to Bootstrapper.Initialise() in the Application_Start method of Global.asax.cs 5 | and the MVC framework will then use the Unity.Mvc3 DependencyResolver to resolve your components. 6 | 7 | There is code in the bootstrapper to initialise the Unity container. Any components that you need to inject should be 8 | registered in the BuildUnityContainer method of the Bootstrapper. All components that implement IDisposable should be 9 | registered with the HierarchicalLifetimeManager to ensure that theey are properly disposed at the end of the request. 10 | 11 | It is typically not necessary to register your controllers with Unity. 12 | 13 | You can find out more about Unity.Mvc3 by visiting: 14 | 15 | http://devtrends.co.uk/blog/introducing-the-unity.mvc3-nuget-package-to-reconcile-mvc3-unity-and-idisposable -------------------------------------------------------------------------------- /WebApi/packages/Unity.Mvc3.1.2/lib/net40/Unity.Mvc3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Unity.Mvc3.1.2/lib/net40/Unity.Mvc3.dll -------------------------------------------------------------------------------- /WebApi/packages/Unity.WebAPI.0.10/Build.bat: -------------------------------------------------------------------------------- 1 | nuget pack 2 | 3 | pause -------------------------------------------------------------------------------- /WebApi/packages/Unity.WebAPI.0.10/Unity.WebAPI.0.10.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Unity.WebAPI.0.10/Unity.WebAPI.0.10.nupkg -------------------------------------------------------------------------------- /WebApi/packages/Unity.WebAPI.0.10/content/Bootstrapper.cs.pp: -------------------------------------------------------------------------------- 1 | using System.Web.Http; 2 | using Microsoft.Practices.Unity; 3 | 4 | namespace $rootnamespace$ 5 | { 6 | public static class Bootstrapper 7 | { 8 | public static void Initialise() 9 | { 10 | var container = BuildUnityContainer(); 11 | 12 | GlobalConfiguration.Configuration.DependencyResolver = new Unity.WebApi.UnityDependencyResolver(container); 13 | } 14 | 15 | private static IUnityContainer BuildUnityContainer() 16 | { 17 | var container = new UnityContainer(); 18 | 19 | // register all your components with the container here 20 | // e.g. container.RegisterType(); 21 | 22 | return container; 23 | } 24 | } 25 | } -------------------------------------------------------------------------------- /WebApi/packages/Unity.WebAPI.0.10/content/Unity.WebAPI.README.txt: -------------------------------------------------------------------------------- 1 | Getting started with Unity.WebAPI 2 | --------------------------------- 3 | 4 | To get started, just add a call to Bootstrapper.Initialise() in the Application_Start method of Global.asax.cs 5 | and the Web API framework will then use the Unity.WebAPI DependencyResolver to resolve your components. 6 | 7 | There is code in the bootstrapper to initialise the Unity container. Any components that you need to inject should be 8 | registered in the BuildUnityContainer method of the Bootstrapper. There is no need to register the controllers. 9 | All components that implement IDisposable should be registered with the HierarchicalLifetimeManager to ensure that they 10 | are properly disposed at the end of the request. 11 | 12 | You can find out more about Unity.WebAPI by visiting: 13 | 14 | http://devtrends.co.uk/blog/introducing-the-unity.webapi-nuget-package -------------------------------------------------------------------------------- /WebApi/packages/Unity.WebAPI.0.10/lib/net40/Unity.WebApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/Unity.WebAPI.0.10/lib/net40/Unity.WebApi.dll -------------------------------------------------------------------------------- /WebApi/packages/WebActivator.1.0.0.0/WebActivator.1.0.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/WebActivator.1.0.0.0/WebActivator.1.0.0.0.nupkg -------------------------------------------------------------------------------- /WebApi/packages/WebActivator.1.0.0.0/lib/WebActivator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/WebActivator.1.0.0.0/lib/WebActivator.dll -------------------------------------------------------------------------------- /WebApi/packages/WebActivator.1.0.0.0/lib/WebActivator.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/WebActivator.1.0.0.0/lib/WebActivator.pdb -------------------------------------------------------------------------------- /WebApi/packages/WebApiTestClient.1.1.1/WebApiTestClient.1.1.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/WebApiTestClient.1.1.1/WebApiTestClient.1.1.1.nupkg -------------------------------------------------------------------------------- /WebApi/packages/WebApiTestClient.1.1.1/content/Areas/HelpPage/TestClient.css: -------------------------------------------------------------------------------- 1 | .httpMethod { 2 | width: 20%; 3 | } 4 | 5 | .uriPath { 6 | width: 70%; 7 | } 8 | 9 | .sampleArea { 10 | width: 95%; 11 | } 12 | 13 | #testClientButton { 14 | position: fixed; 15 | right: 0; 16 | bottom: 0; 17 | width: 150px; 18 | font-size: x-large; 19 | } 20 | 21 | select { 22 | margin-top: 10px; 23 | } 24 | 25 | .panel { 26 | max-height: 120px; 27 | overflow: auto; 28 | } 29 | 30 | .panel input { 31 | width: 150px; 32 | } 33 | 34 | .uriParameterLabel { 35 | width: 100px; 36 | float: left; 37 | border: none; 38 | } -------------------------------------------------------------------------------- /WebApi/packages/WebApiTestClient.1.1.1/content/Areas/HelpPage/Views/Help/DisplayTemplates/TestClientReferences.cshtml: -------------------------------------------------------------------------------- 1 | @using System.Text.RegularExpressions 2 | 3 | 4 | @* Automatically grabs the installed version of JQuery/JQueryUI/KnockoutJS *@ 5 | @{var filePattern = @"(jquery-[0-9]+.[0-9]+.[0-9]+.js|jquery-ui-[0-9]+.[0-9]+.[0-9]+.js|knockout-[0-9]+.[0-9]+.[0-9]+.js)";} 6 | @foreach (var item in Directory.GetFiles(Server.MapPath(@"~/Scripts")).Where(f => Regex.IsMatch(f, filePattern))) 7 | { 8 | 9 | } 10 | -------------------------------------------------------------------------------- /WebApi/packages/WebApiTestClient.1.1.1/readme.txt: -------------------------------------------------------------------------------- 1 | ------------------- 2 | Web API Test Client 3 | ------------------- 4 | A simple Test Client built on top of ASP.NET Web API Help Page. 5 | 6 | Upon installation, the package will automatically attempt to inject 7 | the following test client code into Areas\HelpPage\Views\Help\Api.cshtml 8 | @Html.DisplayForModel("TestClientDialogs") 9 | @Html.DisplayForModel("TestClientReferences") 10 | That's it. No additional setup required when it's completed successfully. -------------------------------------------------------------------------------- /WebApi/packages/WebApiTestClient.1.1.1/tools/install.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | $file = $project.ProjectItems.Item("Areas").ProjectItems.Item("HelpPage").ProjectItems.Item("Views").ProjectItems.Item("Help").ProjectItems.Item("Api.cshtml") 3 | if($file) { 4 | $file.Open() 5 | $file.Document.Activate() 6 | $file.Document.Selection.StartOfDocument() 7 | if(!$file.Document.MarkText("@Html.DisplayForModel(`"TestClientDialogs`")")) 8 | { 9 | $file.Document.ReplaceText("@section Scripts {", "@Html.DisplayForModel(`"TestClientDialogs`")`n@section Scripts {`n @Html.DisplayForModel(`"TestClientReferences`")") 10 | $file.Save() 11 | } 12 | else 13 | { 14 | $file.Document.ClearBookmarks() 15 | } 16 | } -------------------------------------------------------------------------------- /WebApi/packages/WebApiTestClient.1.1.1/tools/uninstall.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | $file = $project.ProjectItems.Item("Areas").ProjectItems.Item("HelpPage").ProjectItems.Item("Views").ProjectItems.Item("Help").ProjectItems.Item("Api.cshtml") 3 | if($file) { 4 | $file.Open() 5 | $file.Document.Activate() 6 | $file.Document.Selection.StartOfDocument() 7 | $file.Document.ReplaceText("@Html.DisplayForModel(`"TestClientDialogs`")`n@section Scripts {`n @Html.DisplayForModel(`"TestClientReferences`")", "@section Scripts {") 8 | $file.Save() 9 | } -------------------------------------------------------------------------------- /WebApi/packages/WebGrease.1.1.0/WebGrease.1.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/WebGrease.1.1.0/WebGrease.1.1.0.nupkg -------------------------------------------------------------------------------- /WebApi/packages/WebGrease.1.1.0/lib/Antlr3.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/WebGrease.1.1.0/lib/Antlr3.Runtime.dll -------------------------------------------------------------------------------- /WebApi/packages/WebGrease.1.1.0/lib/WebGrease.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/WebGrease.1.1.0/lib/WebGrease.dll -------------------------------------------------------------------------------- /WebApi/packages/WebGrease.1.1.0/tools/WG.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/WebGrease.1.1.0/tools/WG.exe -------------------------------------------------------------------------------- /WebApi/packages/jQuery.1.7.1.1/jQuery.1.7.1.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/jQuery.1.7.1.1/jQuery.1.7.1.1.nupkg -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/jquery.ui.accordion.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Accordion 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Accordion#theming 10 | */ 11 | .ui-accordion .ui-accordion-header { display: block; cursor: pointer; position: relative; margin-top: 2px; padding: .5em .5em .5em .7em; zoom: 1; } 12 | .ui-accordion .ui-accordion-icons { padding-left: 2.2em; } 13 | .ui-accordion .ui-accordion-noicons { padding-left: .7em; } 14 | .ui-accordion .ui-accordion-icons .ui-accordion-icons { padding-left: 2.2em; } 15 | .ui-accordion .ui-accordion-header .ui-accordion-header-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; } 16 | .ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; overflow: auto; zoom: 1; } 17 | -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Theming 10 | */ 11 | @import "jquery.ui.base.css"; 12 | @import "jquery.ui.theme.css"; 13 | -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/jquery.ui.autocomplete.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Autocomplete 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Autocomplete#theming 10 | */ 11 | .ui-autocomplete { 12 | position: absolute; 13 | top: 0; /* #8656 */ 14 | cursor: default; 15 | } 16 | 17 | /* workarounds */ 18 | * html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */ 19 | -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/jquery.ui.base.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Theming 10 | */ 11 | @import url("jquery.ui.core.css"); 12 | 13 | @import url("jquery.ui.accordion.css"); 14 | @import url("jquery.ui.autocomplete.css"); 15 | @import url("jquery.ui.button.css"); 16 | @import url("jquery.ui.datepicker.css"); 17 | @import url("jquery.ui.dialog.css"); 18 | @import url("jquery.ui.menu.css"); 19 | @import url("jquery.ui.progressbar.css"); 20 | @import url("jquery.ui.resizable.css"); 21 | @import url("jquery.ui.selectable.css"); 22 | @import url("jquery.ui.slider.css"); 23 | @import url("jquery.ui.spinner.css"); 24 | @import url("jquery.ui.tabs.css"); 25 | @import url("jquery.ui.tooltip.css"); 26 | -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Progressbar 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Progressbar#theming 10 | */ 11 | .ui-progressbar { height:2em; text-align: left; overflow: hidden; } 12 | .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; } -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/jquery.ui.selectable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Selectable 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Selectable#theming 10 | */ 11 | .ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; } 12 | -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/jquery.ui.tooltip.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Tooltip 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | */ 9 | .ui-tooltip { 10 | padding: 8px; 11 | position: absolute; 12 | z-index: 9999; 13 | max-width: 300px; 14 | -webkit-box-shadow: 0 0 5px #aaa; 15 | box-shadow: 0 0 5px #aaa; 16 | } 17 | /* Fades and background-images don't work well together in IE6, drop the image */ 18 | * html .ui-tooltip { 19 | background-image: none; 20 | } 21 | body .ui-tooltip { border-width: 2px; } 22 | -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/jquery.ui.accordion.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.accordion.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin-top:2px;padding:.5em .5em .5em .7em;zoom:1}.ui-accordion .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-noicons{padding-left:.7em}.ui-accordion .ui-accordion-icons .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-header .ui-accordion-header-icon{position:absolute;left:.5em;top:50%;margin-top:-8px}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto;zoom:1} -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/jquery.ui.autocomplete.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.autocomplete.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-autocomplete{position:absolute;top:0;cursor:default}* html .ui-autocomplete{width:1px} -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/jquery.ui.core.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.core.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-helper-hidden{display:none}.ui-helper-hidden-accessible{position:absolute!important;clip:rect(1px);clip:rect(1px,1px,1px,1px)}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{zoom:1}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:absolute;top:0;left:0;width:100%;height:100%} -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/jquery.ui.dialog.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.dialog.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-dialog{position:absolute;padding:.2em;width:300px;overflow:hidden}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 16px .1em 0}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:19px;margin:-10px 0 0 0;padding:1px;height:18px}.ui-dialog .ui-dialog-titlebar-close span{display:block;margin:1px}.ui-dialog .ui-dialog-titlebar-close:hover,.ui-dialog .ui-dialog-titlebar-close:focus{padding:0}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:none;overflow:auto;zoom:1}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin:.5em 0 0 0;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-se{width:14px;height:14px;right:3px;bottom:3px}.ui-draggable .ui-dialog-titlebar{cursor:move} -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/jquery.ui.menu.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.menu.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-menu{list-style:none;padding:2px;margin:0;display:block;outline:none}.ui-menu .ui-menu{margin-top:-3px;position:absolute}.ui-menu .ui-menu-item{margin:0;padding:0;zoom:1;width:100%}.ui-menu .ui-menu-divider{margin:5px -2px 5px -2px;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-menu-item a{text-decoration:none;display:block;padding:2px .4em;line-height:1.5;zoom:1;font-weight:normal}.ui-menu .ui-menu-item a.ui-state-focus,.ui-menu .ui-menu-item a.ui-state-active{font-weight:normal;margin:-1px}.ui-menu .ui-state-disabled{font-weight:normal;margin:.4em 0 .2em;line-height:1.5}.ui-menu .ui-state-disabled a{cursor:default}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item a{position:relative;padding-left:2em}.ui-menu .ui-icon{position:absolute;top:.2em;left:.2em}.ui-menu .ui-menu-icon{position:static;float:right} -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/jquery.ui.progressbar.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.progressbar.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%} -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/jquery.ui.resizable.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.resizable.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:0.1px;display:block}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px} -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/jquery.ui.selectable.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.selectable.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black} -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/jquery.ui.slider.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.slider.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0} -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/jquery.ui.spinner.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.spinner.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:none;background:none;padding:0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:22px}.ui-spinner-button{width:16px;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top:none;border-bottom:none;border-right:none}.ui-spinner .ui-icon{position:absolute;margin-top:-8px;top:50%;left:0}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-spinner .ui-icon-triangle-1-s{background-position:-65px -16px} -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/jquery.ui.tabs.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.tabs.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-tabs{position:relative;padding:.2em;zoom:1}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav li a{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-active a,.ui-tabs .ui-tabs-nav li.ui-state-disabled a,.ui-tabs .ui-tabs-nav li.ui-tabs-loading a{cursor:text}.ui-tabs .ui-tabs-nav li a,.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:none} -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/jquery.ui.tooltip.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.tooltip.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px;-webkit-box-shadow:0 0 5px #aaa;box-shadow:0 0 5px #aaa}* html .ui-tooltip{background-image:none}body .ui-tooltip{border-width:2px} -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Tools/install.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | . (Join-Path $toolsPath common.ps1) 4 | 5 | if ($scriptsFolderProjectItem -eq $null) { 6 | # No Scripts folder 7 | Write-Host "No Scripts folder found" 8 | exit 9 | } 10 | 11 | # Update the _references.js file 12 | AddOrUpdate-Reference $scriptsFolderProjectItem $juiFileNameRegEx $juiFileName -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/Tools/uninstall.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | . (Join-Path $toolsPath common.ps1) 4 | 5 | # Update the _references.js file 6 | Remove-Reference $scriptsFolderProjectItem $juiFileNameRegEx -------------------------------------------------------------------------------- /WebApi/packages/jQuery.UI.Combined.1.9.2/jQuery.UI.Combined.1.9.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/jQuery.UI.Combined.1.9.2/jQuery.UI.Combined.1.9.2.nupkg -------------------------------------------------------------------------------- /WebApi/packages/jQuery.Validation.1.9.0.1/jQuery.Validation.1.9.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/jQuery.Validation.1.9.0.1/jQuery.Validation.1.9.0.1.nupkg -------------------------------------------------------------------------------- /WebApi/packages/knockoutjs.2.2.1/knockoutjs.2.2.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/WebApi/packages/knockoutjs.2.2.1/knockoutjs.2.2.1.nupkg -------------------------------------------------------------------------------- /WebApi/packages/repositories.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /databasescript.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akhilmittal/LogginginWebAPI/2afcabcd5dbbc4aa64eddb5fb8db8ed970fc56b1/databasescript.zip --------------------------------------------------------------------------------