├── .gitignore ├── LICENSE ├── NuGet.Config ├── README.md ├── Swagger_Test.sln ├── Swagger_Test ├── App_Start │ ├── SwaggerConfig.cs │ └── WebApiConfig.cs ├── Attributes │ ├── IgnoreSwaggerUiRequestAttribute.cs │ ├── KeyAuthorizeAttribute.cs │ ├── StringEnumAttribute.cs │ └── SwaggerFormAttribute.cs ├── Controllers │ ├── ActionFilterController.cs │ ├── ApiExplorerController.cs │ ├── ArrayTestController.cs │ ├── AsyncController.cs │ ├── AttributeController.cs │ ├── BigStringController.cs │ ├── BigSwagController.cs │ ├── BindingController.cs │ ├── BlobController.cs │ ├── ChildApiController.cs │ ├── CompanyController.cs │ ├── ComplexRequestController.cs │ ├── CountingLockController.cs │ ├── CustomEnumerableController.cs │ ├── DateController.cs │ ├── DefaultController.cs │ ├── DefinitionsController.cs │ ├── DictionaryController.cs │ ├── EnumTestController.cs │ ├── ErrorController.cs │ ├── FibonacciController.cs │ ├── FractalController.cs │ ├── FromBodyController.cs │ ├── FromHeaderController.cs │ ├── FromUriController.cs │ ├── HtmlExampleController.cs │ ├── HugeResponseController.cs │ ├── IActionResultController.cs │ ├── IHttpActionResultController.cs │ ├── ImageBaseController.cs │ ├── ImageController.cs │ ├── ImportArrayController.cs │ ├── InheritanceTestController.cs │ ├── Int64Controller.cs │ ├── IntParamController.cs │ ├── LocationController.cs │ ├── LogController.cs │ ├── LongProcessingController.cs │ ├── MapTilesController.cs │ ├── MemoryBarrierController.cs │ ├── MonthTestController.cs │ ├── MultiGetController.cs │ ├── MultiParamPostController.cs │ ├── NestedEnumController.cs │ ├── NestedSwagController.cs │ ├── NewUserController.cs │ ├── NodaTimeController.cs │ ├── NullablesController.cs │ ├── NumCalcController.cs │ ├── OAuthController.cs │ ├── PagedListController.cs │ ├── PngImageController.cs │ ├── PolygonVolumeController.cs │ ├── ProcessController.cs │ ├── RandomController.cs │ ├── RecursiveParamController.cs │ ├── ResourcesController.cs │ ├── RoutePrefixController.cs │ ├── RouteTestController.cs │ ├── RoutesController.cs │ ├── SvgImageController.cs │ ├── SymbolsController.cs │ ├── TestEnumController.cs │ ├── TestMultiGetController.cs │ ├── TestPostController.cs │ ├── TestStringEnumController.cs │ ├── UsersController.cs │ ├── ValueProviderController.cs │ └── ValueTupleController.cs ├── Global.asax ├── Global.asax.cs ├── Models │ ├── BigClass.cs │ ├── Company.cs │ ├── ComplexModel.cs │ ├── CountingLock.cs │ ├── ExtraType.cs │ ├── GeolocateResponse.cs │ ├── Location.cs │ ├── MonthEnum.cs │ ├── NewUserWriteModel.cs │ ├── ScopeResponseModel.cs │ ├── ShiftDayOffRule.cs │ ├── TestClasses.cs │ └── ViewModelTest.cs ├── NLog.config ├── NLog.xsd ├── Properties │ └── AssemblyInfo.cs ├── Styles.css ├── Swagger_Test.csproj ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── XmlComments.XML ├── custom.html ├── custom.js ├── log4net.config └── packages.config ├── UnitTests ├── Properties │ └── AssemblyInfo.cs ├── SwaggerTests.cs ├── UnitTests.csproj ├── app.config └── packages.config └── swagger.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/LICENSE -------------------------------------------------------------------------------- /NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/NuGet.Config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/README.md -------------------------------------------------------------------------------- /Swagger_Test.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test.sln -------------------------------------------------------------------------------- /Swagger_Test/App_Start/SwaggerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/App_Start/SwaggerConfig.cs -------------------------------------------------------------------------------- /Swagger_Test/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /Swagger_Test/Attributes/IgnoreSwaggerUiRequestAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Attributes/IgnoreSwaggerUiRequestAttribute.cs -------------------------------------------------------------------------------- /Swagger_Test/Attributes/KeyAuthorizeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Attributes/KeyAuthorizeAttribute.cs -------------------------------------------------------------------------------- /Swagger_Test/Attributes/StringEnumAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Attributes/StringEnumAttribute.cs -------------------------------------------------------------------------------- /Swagger_Test/Attributes/SwaggerFormAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Attributes/SwaggerFormAttribute.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/ActionFilterController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/ActionFilterController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/ApiExplorerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/ApiExplorerController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/ArrayTestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/ArrayTestController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/AsyncController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/AsyncController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/AttributeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/AttributeController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/BigStringController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/BigStringController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/BigSwagController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/BigSwagController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/BindingController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/BindingController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/BlobController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/BlobController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/ChildApiController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/ChildApiController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/CompanyController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/CompanyController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/ComplexRequestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/ComplexRequestController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/CountingLockController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/CountingLockController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/CustomEnumerableController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/CustomEnumerableController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/DateController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/DateController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/DefaultController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/DefaultController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/DefinitionsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/DefinitionsController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/DictionaryController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/DictionaryController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/EnumTestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/EnumTestController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/ErrorController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/ErrorController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/FibonacciController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/FibonacciController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/FractalController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/FractalController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/FromBodyController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/FromBodyController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/FromHeaderController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/FromHeaderController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/FromUriController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/FromUriController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/HtmlExampleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/HtmlExampleController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/HugeResponseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/HugeResponseController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/IActionResultController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/IActionResultController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/IHttpActionResultController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/IHttpActionResultController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/ImageBaseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/ImageBaseController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/ImageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/ImageController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/ImportArrayController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/ImportArrayController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/InheritanceTestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/InheritanceTestController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/Int64Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/Int64Controller.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/IntParamController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/IntParamController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/LocationController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/LocationController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/LogController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/LogController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/LongProcessingController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/LongProcessingController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/MapTilesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/MapTilesController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/MemoryBarrierController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/MemoryBarrierController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/MonthTestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/MonthTestController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/MultiGetController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/MultiGetController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/MultiParamPostController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/MultiParamPostController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/NestedEnumController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/NestedEnumController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/NestedSwagController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/NestedSwagController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/NewUserController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/NewUserController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/NodaTimeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/NodaTimeController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/NullablesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/NullablesController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/NumCalcController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/NumCalcController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/OAuthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/OAuthController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/PagedListController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/PagedListController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/PngImageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/PngImageController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/PolygonVolumeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/PolygonVolumeController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/ProcessController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/ProcessController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/RandomController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/RandomController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/RecursiveParamController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/RecursiveParamController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/ResourcesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/ResourcesController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/RoutePrefixController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/RoutePrefixController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/RouteTestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/RouteTestController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/RoutesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/RoutesController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/SvgImageController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/SvgImageController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/SymbolsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/SymbolsController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/TestEnumController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/TestEnumController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/TestMultiGetController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/TestMultiGetController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/TestPostController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/TestPostController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/TestStringEnumController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/TestStringEnumController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/UsersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/UsersController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/ValueProviderController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/ValueProviderController.cs -------------------------------------------------------------------------------- /Swagger_Test/Controllers/ValueTupleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Controllers/ValueTupleController.cs -------------------------------------------------------------------------------- /Swagger_Test/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Global.asax -------------------------------------------------------------------------------- /Swagger_Test/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Global.asax.cs -------------------------------------------------------------------------------- /Swagger_Test/Models/BigClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Models/BigClass.cs -------------------------------------------------------------------------------- /Swagger_Test/Models/Company.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Models/Company.cs -------------------------------------------------------------------------------- /Swagger_Test/Models/ComplexModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Models/ComplexModel.cs -------------------------------------------------------------------------------- /Swagger_Test/Models/CountingLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Models/CountingLock.cs -------------------------------------------------------------------------------- /Swagger_Test/Models/ExtraType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Models/ExtraType.cs -------------------------------------------------------------------------------- /Swagger_Test/Models/GeolocateResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Models/GeolocateResponse.cs -------------------------------------------------------------------------------- /Swagger_Test/Models/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Models/Location.cs -------------------------------------------------------------------------------- /Swagger_Test/Models/MonthEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Models/MonthEnum.cs -------------------------------------------------------------------------------- /Swagger_Test/Models/NewUserWriteModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Models/NewUserWriteModel.cs -------------------------------------------------------------------------------- /Swagger_Test/Models/ScopeResponseModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Models/ScopeResponseModel.cs -------------------------------------------------------------------------------- /Swagger_Test/Models/ShiftDayOffRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Models/ShiftDayOffRule.cs -------------------------------------------------------------------------------- /Swagger_Test/Models/TestClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Models/TestClasses.cs -------------------------------------------------------------------------------- /Swagger_Test/Models/ViewModelTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Models/ViewModelTest.cs -------------------------------------------------------------------------------- /Swagger_Test/NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/NLog.config -------------------------------------------------------------------------------- /Swagger_Test/NLog.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/NLog.xsd -------------------------------------------------------------------------------- /Swagger_Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Swagger_Test/Styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Styles.css -------------------------------------------------------------------------------- /Swagger_Test/Swagger_Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Swagger_Test.csproj -------------------------------------------------------------------------------- /Swagger_Test/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Web.Debug.config -------------------------------------------------------------------------------- /Swagger_Test/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Web.Release.config -------------------------------------------------------------------------------- /Swagger_Test/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/Web.config -------------------------------------------------------------------------------- /Swagger_Test/XmlComments.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/XmlComments.XML -------------------------------------------------------------------------------- /Swagger_Test/custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/custom.html -------------------------------------------------------------------------------- /Swagger_Test/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/custom.js -------------------------------------------------------------------------------- /Swagger_Test/log4net.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/log4net.config -------------------------------------------------------------------------------- /Swagger_Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/Swagger_Test/packages.config -------------------------------------------------------------------------------- /UnitTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/UnitTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UnitTests/SwaggerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/UnitTests/SwaggerTests.cs -------------------------------------------------------------------------------- /UnitTests/UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/UnitTests/UnitTests.csproj -------------------------------------------------------------------------------- /UnitTests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/UnitTests/app.config -------------------------------------------------------------------------------- /UnitTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/UnitTests/packages.config -------------------------------------------------------------------------------- /swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heldersepu/Swagger-Net-Test/HEAD/swagger.json --------------------------------------------------------------------------------