├── .gitignore ├── Finished sample ├── Generated code │ ├── aspnetcoreapi │ │ ├── .swagger-codegen-ignore │ │ ├── .swagger-codegen │ │ │ └── VERSION │ │ ├── .vs │ │ │ └── IO.Swagger │ │ │ │ └── v16 │ │ │ │ └── .suo │ │ ├── IO.Swagger.sln │ │ ├── NuGet.Config │ │ ├── README.md │ │ ├── build.bat │ │ ├── build.sh │ │ └── src │ │ │ └── IO.Swagger │ │ │ ├── .gitignore │ │ │ ├── Attributes │ │ │ └── ValidateModelStateAttribute.cs │ │ │ ├── Controllers │ │ │ ├── AuthorsApi.cs │ │ │ └── BooksApi.cs │ │ │ ├── Dockerfile │ │ │ ├── Filters │ │ │ ├── BasePathFilter.cs │ │ │ └── GeneratePathParamsValidationFilter.cs │ │ │ ├── IO.Swagger.csproj │ │ │ ├── Models │ │ │ ├── Author.cs │ │ │ ├── AuthorForUpdate.cs │ │ │ ├── Book.cs │ │ │ ├── BookForCreation.cs │ │ │ ├── BookForCreationWithAmountOfPages.cs │ │ │ ├── BookWithConcatenatedAuthorName.cs │ │ │ ├── Operation.cs │ │ │ ├── ProblemDetails.cs │ │ │ ├── ValidationProblemDetails.cs │ │ │ └── Void.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── Startup.cs │ │ │ ├── appsettings.json │ │ │ ├── web.config │ │ │ └── wwwroot │ │ │ ├── README.md │ │ │ ├── index.html │ │ │ ├── swagger-original.json │ │ │ └── web.config │ └── csharp │ │ ├── .gitignore │ │ ├── .swagger-codegen-ignore │ │ ├── .swagger-codegen │ │ └── VERSION │ │ ├── .travis.yml │ │ ├── .vs │ │ └── IO.Swagger │ │ │ └── v16 │ │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ └── storage.ide │ │ ├── IO.Swagger.sln │ │ ├── README.md │ │ ├── build.bat │ │ ├── build.sh │ │ ├── docs │ │ ├── Author.md │ │ ├── AuthorForUpdate.md │ │ ├── AuthorsApi.md │ │ ├── Book.md │ │ ├── BookForCreation.md │ │ ├── BookForCreationWithAmountOfPages.md │ │ ├── BookWithConcatenatedAuthorName.md │ │ ├── BooksApi.md │ │ ├── Operation.md │ │ ├── ProblemDetails.md │ │ ├── ValidationProblemDetails.md │ │ └── Void.md │ │ ├── git_push.sh │ │ ├── mono_nunit_test.sh │ │ └── src │ │ ├── IO.Swagger.Test │ │ ├── Api │ │ │ ├── AuthorsApiTests.cs │ │ │ └── BooksApiTests.cs │ │ ├── IO.Swagger.Test.csproj │ │ ├── Model │ │ │ ├── AuthorForUpdateTests.cs │ │ │ ├── AuthorTests.cs │ │ │ ├── BookForCreationTests.cs │ │ │ ├── BookForCreationWithAmountOfPagesTests.cs │ │ │ ├── BookTests.cs │ │ │ ├── BookWithConcatenatedAuthorNameTests.cs │ │ │ ├── OperationTests.cs │ │ │ ├── ProblemDetailsTests.cs │ │ │ ├── ValidationProblemDetailsTests.cs │ │ │ └── VoidTests.cs │ │ └── packages.config │ │ └── IO.Swagger │ │ ├── Api │ │ ├── AuthorsApi.cs │ │ └── BooksApi.cs │ │ ├── Client │ │ ├── ApiClient.cs │ │ ├── ApiException.cs │ │ ├── ApiResponse.cs │ │ ├── Configuration.cs │ │ ├── ExceptionFactory.cs │ │ ├── GlobalConfiguration.cs │ │ ├── IApiAccessor.cs │ │ ├── IReadableConfiguration.cs │ │ └── SwaggerDateConverter.cs │ │ ├── IO.Swagger.csproj │ │ ├── IO.Swagger.nuspec │ │ ├── Model │ │ ├── Author.cs │ │ ├── AuthorForUpdate.cs │ │ ├── Book.cs │ │ ├── BookForCreation.cs │ │ ├── BookForCreationWithAmountOfPages.cs │ │ ├── BookWithConcatenatedAuthorName.cs │ │ ├── Operation.cs │ │ ├── ProblemDetails.cs │ │ ├── ValidationProblemDetails.cs │ │ └── Void.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── packages.config ├── GeneratedDtoModels.cs ├── Library API DEV.postman_environment.json ├── Library API.postman_collection.json ├── Library.API │ ├── Attributes │ │ └── RequestHeaderMatchesMediaTypeAttribute.cs │ ├── Contexts │ │ └── LibraryContext.cs │ ├── Controllers │ │ ├── AuthorsController.cs │ │ ├── AuthorsControllerV2.cs │ │ └── BooksController.cs │ ├── Entities │ │ ├── Author.cs │ │ └── Book.cs │ ├── IListExtensions.cs │ ├── Library.API.csproj │ ├── Library.API.csproj.user │ ├── Library.API.xml │ ├── Migrations │ │ ├── InitialMigration.Designer.cs │ │ ├── InitialMigration.cs │ │ └── LibraryContextModelSnapshot.cs │ ├── Models │ │ ├── Author.cs │ │ ├── AuthorForUpdate.cs │ │ ├── Book.cs │ │ ├── BookForCreation.cs │ │ ├── BookForCreationWithAmountOfPages.cs │ │ └── BookWithConcatenatedAuthorName.cs │ ├── OperationFilters │ │ ├── CreateBookOperationFilter.cs │ │ └── GetBookOperationFilter.cs │ ├── Profiles │ │ ├── AuthorProfile.cs │ │ └── BookProfile.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Services │ │ ├── AuthorRepository.cs │ │ ├── BookRepository.cs │ │ ├── IAuthorRepository.cs │ │ └── IBookRepository.cs │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── libman.json └── Library.sln ├── README.md └── Starter files ├── Library.API ├── Attributes │ └── RequestHeaderMatchesMediaTypeAttribute.cs ├── Contexts │ └── LibraryContext.cs ├── Controllers │ ├── AuthorsController.cs │ ├── AuthorsControllerV2.cs │ └── BooksController.cs ├── Entities │ ├── Author.cs │ └── Book.cs ├── IListExtensions.cs ├── Library.API.csproj ├── Library.API.csproj.user ├── Library.API.xml ├── Migrations │ ├── InitialMigration.Designer.cs │ ├── InitialMigration.cs │ └── LibraryContextModelSnapshot.cs ├── Models │ ├── Author.cs │ ├── AuthorForUpdate.cs │ ├── Book.cs │ ├── BookForCreation.cs │ ├── BookForCreationWithAmountOfPages.cs │ └── BookWithConcatenatedAuthorName.cs ├── OperationFilters │ ├── CreateBookOperationFilter.cs │ └── GetBookOperationFilter.cs ├── Profiles │ ├── AuthorProfile.cs │ └── BookProfile.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Services │ ├── AuthorRepository.cs │ ├── BookRepository.cs │ ├── IAuthorRepository.cs │ └── IBookRepository.cs ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json └── libman.json └── Library.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/.gitignore -------------------------------------------------------------------------------- /Finished sample/Generated code/aspnetcoreapi/.swagger-codegen-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/aspnetcoreapi/.swagger-codegen-ignore -------------------------------------------------------------------------------- /Finished sample/Generated code/aspnetcoreapi/.swagger-codegen/VERSION: -------------------------------------------------------------------------------- 1 | 3.0.5 -------------------------------------------------------------------------------- /Finished sample/Generated code/aspnetcoreapi/.vs/IO.Swagger/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/aspnetcoreapi/.vs/IO.Swagger/v16/.suo -------------------------------------------------------------------------------- /Finished sample/Generated code/aspnetcoreapi/IO.Swagger.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/aspnetcoreapi/IO.Swagger.sln -------------------------------------------------------------------------------- /Finished sample/Generated code/aspnetcoreapi/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/aspnetcoreapi/NuGet.Config -------------------------------------------------------------------------------- /Finished sample/Generated code/aspnetcoreapi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/aspnetcoreapi/README.md -------------------------------------------------------------------------------- /Finished sample/Generated code/aspnetcoreapi/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/aspnetcoreapi/build.bat -------------------------------------------------------------------------------- /Finished sample/Generated code/aspnetcoreapi/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/aspnetcoreapi/build.sh -------------------------------------------------------------------------------- /Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/.gitignore -------------------------------------------------------------------------------- /Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/Attributes/ValidateModelStateAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/Attributes/ValidateModelStateAttribute.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/Controllers/AuthorsApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/Controllers/AuthorsApi.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/Controllers/BooksApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/Controllers/BooksApi.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/Dockerfile -------------------------------------------------------------------------------- /Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/Filters/BasePathFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/Filters/BasePathFilter.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/Filters/GeneratePathParamsValidationFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/Filters/GeneratePathParamsValidationFilter.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/IO.Swagger.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/IO.Swagger.csproj -------------------------------------------------------------------------------- /Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/Models/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/Models/Author.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/Models/AuthorForUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/Models/AuthorForUpdate.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/Models/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/Models/Book.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/Models/BookForCreation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/Models/BookForCreation.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/Models/BookForCreationWithAmountOfPages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/Models/BookForCreationWithAmountOfPages.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/Models/BookWithConcatenatedAuthorName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/Models/BookWithConcatenatedAuthorName.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/Models/Operation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/Models/Operation.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/Models/ProblemDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/Models/ProblemDetails.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/Models/ValidationProblemDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/Models/ValidationProblemDetails.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/Models/Void.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/Models/Void.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/Program.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/Properties/launchSettings.json -------------------------------------------------------------------------------- /Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/Startup.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/appsettings.json -------------------------------------------------------------------------------- /Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/web.config -------------------------------------------------------------------------------- /Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/wwwroot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/wwwroot/README.md -------------------------------------------------------------------------------- /Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/wwwroot/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/wwwroot/swagger-original.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/wwwroot/swagger-original.json -------------------------------------------------------------------------------- /Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/wwwroot/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/aspnetcoreapi/src/IO.Swagger/wwwroot/web.config -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/.gitignore -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/.swagger-codegen-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/.swagger-codegen-ignore -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/.swagger-codegen/VERSION: -------------------------------------------------------------------------------- 1 | 3.0.5 -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/.travis.yml -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/.vs/IO.Swagger/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/.vs/IO.Swagger/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/.vs/IO.Swagger/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/IO.Swagger.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/IO.Swagger.sln -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/README.md -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/build.bat -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/build.sh -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/docs/Author.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/docs/Author.md -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/docs/AuthorForUpdate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/docs/AuthorForUpdate.md -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/docs/AuthorsApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/docs/AuthorsApi.md -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/docs/Book.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/docs/Book.md -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/docs/BookForCreation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/docs/BookForCreation.md -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/docs/BookForCreationWithAmountOfPages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/docs/BookForCreationWithAmountOfPages.md -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/docs/BookWithConcatenatedAuthorName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/docs/BookWithConcatenatedAuthorName.md -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/docs/BooksApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/docs/BooksApi.md -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/docs/Operation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/docs/Operation.md -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/docs/ProblemDetails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/docs/ProblemDetails.md -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/docs/ValidationProblemDetails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/docs/ValidationProblemDetails.md -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/docs/Void.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/docs/Void.md -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/git_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/git_push.sh -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/mono_nunit_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/mono_nunit_test.sh -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/src/IO.Swagger.Test/Api/AuthorsApiTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/src/IO.Swagger.Test/Api/AuthorsApiTests.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/src/IO.Swagger.Test/Api/BooksApiTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/src/IO.Swagger.Test/Api/BooksApiTests.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/src/IO.Swagger.Test/IO.Swagger.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/src/IO.Swagger.Test/IO.Swagger.Test.csproj -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/src/IO.Swagger.Test/Model/AuthorForUpdateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/src/IO.Swagger.Test/Model/AuthorForUpdateTests.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/src/IO.Swagger.Test/Model/AuthorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/src/IO.Swagger.Test/Model/AuthorTests.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/src/IO.Swagger.Test/Model/BookForCreationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/src/IO.Swagger.Test/Model/BookForCreationTests.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/src/IO.Swagger.Test/Model/BookForCreationWithAmountOfPagesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/src/IO.Swagger.Test/Model/BookForCreationWithAmountOfPagesTests.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/src/IO.Swagger.Test/Model/BookTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/src/IO.Swagger.Test/Model/BookTests.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/src/IO.Swagger.Test/Model/BookWithConcatenatedAuthorNameTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/src/IO.Swagger.Test/Model/BookWithConcatenatedAuthorNameTests.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/src/IO.Swagger.Test/Model/OperationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/src/IO.Swagger.Test/Model/OperationTests.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/src/IO.Swagger.Test/Model/ProblemDetailsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/src/IO.Swagger.Test/Model/ProblemDetailsTests.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/src/IO.Swagger.Test/Model/ValidationProblemDetailsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/src/IO.Swagger.Test/Model/ValidationProblemDetailsTests.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/src/IO.Swagger.Test/Model/VoidTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/src/IO.Swagger.Test/Model/VoidTests.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/src/IO.Swagger.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/src/IO.Swagger.Test/packages.config -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/src/IO.Swagger/Api/AuthorsApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/src/IO.Swagger/Api/AuthorsApi.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/src/IO.Swagger/Api/BooksApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/src/IO.Swagger/Api/BooksApi.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/src/IO.Swagger/Client/ApiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/src/IO.Swagger/Client/ApiClient.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/src/IO.Swagger/Client/ApiException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/src/IO.Swagger/Client/ApiException.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/src/IO.Swagger/Client/ApiResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/src/IO.Swagger/Client/ApiResponse.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/src/IO.Swagger/Client/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/src/IO.Swagger/Client/Configuration.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/src/IO.Swagger/Client/ExceptionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/src/IO.Swagger/Client/ExceptionFactory.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/src/IO.Swagger/Client/GlobalConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/src/IO.Swagger/Client/GlobalConfiguration.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/src/IO.Swagger/Client/IApiAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/src/IO.Swagger/Client/IApiAccessor.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/src/IO.Swagger/Client/IReadableConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/src/IO.Swagger/Client/IReadableConfiguration.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/src/IO.Swagger/Client/SwaggerDateConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/src/IO.Swagger/Client/SwaggerDateConverter.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/src/IO.Swagger/IO.Swagger.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/src/IO.Swagger/IO.Swagger.csproj -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/src/IO.Swagger/IO.Swagger.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/src/IO.Swagger/IO.Swagger.nuspec -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/src/IO.Swagger/Model/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/src/IO.Swagger/Model/Author.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/src/IO.Swagger/Model/AuthorForUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/src/IO.Swagger/Model/AuthorForUpdate.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/src/IO.Swagger/Model/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/src/IO.Swagger/Model/Book.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/src/IO.Swagger/Model/BookForCreation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/src/IO.Swagger/Model/BookForCreation.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/src/IO.Swagger/Model/BookForCreationWithAmountOfPages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/src/IO.Swagger/Model/BookForCreationWithAmountOfPages.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/src/IO.Swagger/Model/BookWithConcatenatedAuthorName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/src/IO.Swagger/Model/BookWithConcatenatedAuthorName.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/src/IO.Swagger/Model/Operation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/src/IO.Swagger/Model/Operation.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/src/IO.Swagger/Model/ProblemDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/src/IO.Swagger/Model/ProblemDetails.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/src/IO.Swagger/Model/ValidationProblemDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/src/IO.Swagger/Model/ValidationProblemDetails.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/src/IO.Swagger/Model/Void.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/src/IO.Swagger/Model/Void.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/src/IO.Swagger/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/src/IO.Swagger/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Finished sample/Generated code/csharp/src/IO.Swagger/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Generated code/csharp/src/IO.Swagger/packages.config -------------------------------------------------------------------------------- /Finished sample/GeneratedDtoModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/GeneratedDtoModels.cs -------------------------------------------------------------------------------- /Finished sample/Library API DEV.postman_environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Library API DEV.postman_environment.json -------------------------------------------------------------------------------- /Finished sample/Library API.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Library API.postman_collection.json -------------------------------------------------------------------------------- /Finished sample/Library.API/Attributes/RequestHeaderMatchesMediaTypeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Library.API/Attributes/RequestHeaderMatchesMediaTypeAttribute.cs -------------------------------------------------------------------------------- /Finished sample/Library.API/Contexts/LibraryContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Library.API/Contexts/LibraryContext.cs -------------------------------------------------------------------------------- /Finished sample/Library.API/Controllers/AuthorsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Library.API/Controllers/AuthorsController.cs -------------------------------------------------------------------------------- /Finished sample/Library.API/Controllers/AuthorsControllerV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Library.API/Controllers/AuthorsControllerV2.cs -------------------------------------------------------------------------------- /Finished sample/Library.API/Controllers/BooksController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Library.API/Controllers/BooksController.cs -------------------------------------------------------------------------------- /Finished sample/Library.API/Entities/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Library.API/Entities/Author.cs -------------------------------------------------------------------------------- /Finished sample/Library.API/Entities/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Library.API/Entities/Book.cs -------------------------------------------------------------------------------- /Finished sample/Library.API/IListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Library.API/IListExtensions.cs -------------------------------------------------------------------------------- /Finished sample/Library.API/Library.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Library.API/Library.API.csproj -------------------------------------------------------------------------------- /Finished sample/Library.API/Library.API.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Library.API/Library.API.csproj.user -------------------------------------------------------------------------------- /Finished sample/Library.API/Library.API.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Library.API/Library.API.xml -------------------------------------------------------------------------------- /Finished sample/Library.API/Migrations/InitialMigration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Library.API/Migrations/InitialMigration.Designer.cs -------------------------------------------------------------------------------- /Finished sample/Library.API/Migrations/InitialMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Library.API/Migrations/InitialMigration.cs -------------------------------------------------------------------------------- /Finished sample/Library.API/Migrations/LibraryContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Library.API/Migrations/LibraryContextModelSnapshot.cs -------------------------------------------------------------------------------- /Finished sample/Library.API/Models/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Library.API/Models/Author.cs -------------------------------------------------------------------------------- /Finished sample/Library.API/Models/AuthorForUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Library.API/Models/AuthorForUpdate.cs -------------------------------------------------------------------------------- /Finished sample/Library.API/Models/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Library.API/Models/Book.cs -------------------------------------------------------------------------------- /Finished sample/Library.API/Models/BookForCreation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Library.API/Models/BookForCreation.cs -------------------------------------------------------------------------------- /Finished sample/Library.API/Models/BookForCreationWithAmountOfPages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Library.API/Models/BookForCreationWithAmountOfPages.cs -------------------------------------------------------------------------------- /Finished sample/Library.API/Models/BookWithConcatenatedAuthorName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Library.API/Models/BookWithConcatenatedAuthorName.cs -------------------------------------------------------------------------------- /Finished sample/Library.API/OperationFilters/CreateBookOperationFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Library.API/OperationFilters/CreateBookOperationFilter.cs -------------------------------------------------------------------------------- /Finished sample/Library.API/OperationFilters/GetBookOperationFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Library.API/OperationFilters/GetBookOperationFilter.cs -------------------------------------------------------------------------------- /Finished sample/Library.API/Profiles/AuthorProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Library.API/Profiles/AuthorProfile.cs -------------------------------------------------------------------------------- /Finished sample/Library.API/Profiles/BookProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Library.API/Profiles/BookProfile.cs -------------------------------------------------------------------------------- /Finished sample/Library.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Library.API/Program.cs -------------------------------------------------------------------------------- /Finished sample/Library.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Library.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /Finished sample/Library.API/Services/AuthorRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Library.API/Services/AuthorRepository.cs -------------------------------------------------------------------------------- /Finished sample/Library.API/Services/BookRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Library.API/Services/BookRepository.cs -------------------------------------------------------------------------------- /Finished sample/Library.API/Services/IAuthorRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Library.API/Services/IAuthorRepository.cs -------------------------------------------------------------------------------- /Finished sample/Library.API/Services/IBookRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Library.API/Services/IBookRepository.cs -------------------------------------------------------------------------------- /Finished sample/Library.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Library.API/Startup.cs -------------------------------------------------------------------------------- /Finished sample/Library.API/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Library.API/appsettings.Development.json -------------------------------------------------------------------------------- /Finished sample/Library.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Library.API/appsettings.json -------------------------------------------------------------------------------- /Finished sample/Library.API/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Library.API/libman.json -------------------------------------------------------------------------------- /Finished sample/Library.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Finished sample/Library.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/README.md -------------------------------------------------------------------------------- /Starter files/Library.API/Attributes/RequestHeaderMatchesMediaTypeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Starter files/Library.API/Attributes/RequestHeaderMatchesMediaTypeAttribute.cs -------------------------------------------------------------------------------- /Starter files/Library.API/Contexts/LibraryContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Starter files/Library.API/Contexts/LibraryContext.cs -------------------------------------------------------------------------------- /Starter files/Library.API/Controllers/AuthorsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Starter files/Library.API/Controllers/AuthorsController.cs -------------------------------------------------------------------------------- /Starter files/Library.API/Controllers/AuthorsControllerV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Starter files/Library.API/Controllers/AuthorsControllerV2.cs -------------------------------------------------------------------------------- /Starter files/Library.API/Controllers/BooksController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Starter files/Library.API/Controllers/BooksController.cs -------------------------------------------------------------------------------- /Starter files/Library.API/Entities/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Starter files/Library.API/Entities/Author.cs -------------------------------------------------------------------------------- /Starter files/Library.API/Entities/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Starter files/Library.API/Entities/Book.cs -------------------------------------------------------------------------------- /Starter files/Library.API/IListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Starter files/Library.API/IListExtensions.cs -------------------------------------------------------------------------------- /Starter files/Library.API/Library.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Starter files/Library.API/Library.API.csproj -------------------------------------------------------------------------------- /Starter files/Library.API/Library.API.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Starter files/Library.API/Library.API.csproj.user -------------------------------------------------------------------------------- /Starter files/Library.API/Library.API.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Starter files/Library.API/Library.API.xml -------------------------------------------------------------------------------- /Starter files/Library.API/Migrations/InitialMigration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Starter files/Library.API/Migrations/InitialMigration.Designer.cs -------------------------------------------------------------------------------- /Starter files/Library.API/Migrations/InitialMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Starter files/Library.API/Migrations/InitialMigration.cs -------------------------------------------------------------------------------- /Starter files/Library.API/Migrations/LibraryContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Starter files/Library.API/Migrations/LibraryContextModelSnapshot.cs -------------------------------------------------------------------------------- /Starter files/Library.API/Models/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Starter files/Library.API/Models/Author.cs -------------------------------------------------------------------------------- /Starter files/Library.API/Models/AuthorForUpdate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Starter files/Library.API/Models/AuthorForUpdate.cs -------------------------------------------------------------------------------- /Starter files/Library.API/Models/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Starter files/Library.API/Models/Book.cs -------------------------------------------------------------------------------- /Starter files/Library.API/Models/BookForCreation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Starter files/Library.API/Models/BookForCreation.cs -------------------------------------------------------------------------------- /Starter files/Library.API/Models/BookForCreationWithAmountOfPages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Starter files/Library.API/Models/BookForCreationWithAmountOfPages.cs -------------------------------------------------------------------------------- /Starter files/Library.API/Models/BookWithConcatenatedAuthorName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Starter files/Library.API/Models/BookWithConcatenatedAuthorName.cs -------------------------------------------------------------------------------- /Starter files/Library.API/OperationFilters/CreateBookOperationFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Starter files/Library.API/OperationFilters/CreateBookOperationFilter.cs -------------------------------------------------------------------------------- /Starter files/Library.API/OperationFilters/GetBookOperationFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Starter files/Library.API/OperationFilters/GetBookOperationFilter.cs -------------------------------------------------------------------------------- /Starter files/Library.API/Profiles/AuthorProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Starter files/Library.API/Profiles/AuthorProfile.cs -------------------------------------------------------------------------------- /Starter files/Library.API/Profiles/BookProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Starter files/Library.API/Profiles/BookProfile.cs -------------------------------------------------------------------------------- /Starter files/Library.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Starter files/Library.API/Program.cs -------------------------------------------------------------------------------- /Starter files/Library.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Starter files/Library.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /Starter files/Library.API/Services/AuthorRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Starter files/Library.API/Services/AuthorRepository.cs -------------------------------------------------------------------------------- /Starter files/Library.API/Services/BookRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Starter files/Library.API/Services/BookRepository.cs -------------------------------------------------------------------------------- /Starter files/Library.API/Services/IAuthorRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Starter files/Library.API/Services/IAuthorRepository.cs -------------------------------------------------------------------------------- /Starter files/Library.API/Services/IBookRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Starter files/Library.API/Services/IBookRepository.cs -------------------------------------------------------------------------------- /Starter files/Library.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Starter files/Library.API/Startup.cs -------------------------------------------------------------------------------- /Starter files/Library.API/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Starter files/Library.API/appsettings.Development.json -------------------------------------------------------------------------------- /Starter files/Library.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Starter files/Library.API/appsettings.json -------------------------------------------------------------------------------- /Starter files/Library.API/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Starter files/Library.API/libman.json -------------------------------------------------------------------------------- /Starter files/Library.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KevinDockx/GeneratingCodeAndTestingAspNetCoreApis/HEAD/Starter files/Library.sln --------------------------------------------------------------------------------