├── .gitattributes ├── 9781484262542.jpg ├── CommandAPIClient ├── .vscode │ ├── launch.json │ └── tasks.json ├── AuthConfig.cs ├── CommandAPIClient.csproj ├── Program.cs ├── appsettings.json ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── CommandAPIClient.deps.json │ │ ├── CommandAPIClient.dll │ │ ├── CommandAPIClient.exe │ │ ├── CommandAPIClient.pdb │ │ ├── CommandAPIClient.runtimeconfig.dev.json │ │ ├── CommandAPIClient.runtimeconfig.json │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ ├── Microsoft.Extensions.Configuration.Binder.dll │ │ ├── Microsoft.Extensions.Configuration.FileExtensions.dll │ │ ├── Microsoft.Extensions.Configuration.Json.dll │ │ ├── Microsoft.Extensions.Configuration.dll │ │ ├── Microsoft.Extensions.FileProviders.Abstractions.dll │ │ ├── Microsoft.Extensions.FileProviders.Physical.dll │ │ ├── Microsoft.Extensions.FileSystemGlobbing.dll │ │ ├── Microsoft.Extensions.Primitives.dll │ │ └── Microsoft.Identity.Client.dll └── obj │ ├── CommandAPIClient.csproj.nuget.dgspec.json │ ├── CommandAPIClient.csproj.nuget.g.props │ ├── CommandAPIClient.csproj.nuget.g.targets │ ├── Debug │ └── netcoreapp3.1 │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ ├── CommandAPIClient │ │ ├── CommandAPIClient.AssemblyInfo.cs │ │ ├── CommandAPIClient.AssemblyInfoInputs.cache │ │ ├── CommandAPIClient.assets.cache │ │ ├── CommandAPIClient.csproj.CopyComplete │ │ ├── CommandAPIClient.csproj.CoreCompileInputs.cache │ │ ├── CommandAPIClient.csproj.FileListAbsolute.txt │ │ ├── CommandAPIClient.csprojAssemblyReference.cache │ │ ├── CommandAPIClient.dll │ │ ├── CommandAPIClient.exe │ │ ├── CommandAPIClient.genruntimeconfig.cache │ │ └── CommandAPIClient.pdb │ ├── project.assets.json │ └── project.nuget.cache ├── CommandAPISolution ├── .gitignore ├── .vscode │ ├── launch.json │ └── tasks.json ├── CommandAPISolution.sln ├── azure-pipelines.yml ├── src │ └── CommandAPI │ │ ├── CommandAPI.csproj │ │ ├── Controllers │ │ └── CommandsController.cs │ │ ├── Data │ │ ├── CommandContext.cs │ │ ├── ICommandAPIRepo.cs │ │ ├── MockCommandAPIRepo.cs │ │ └── SqlCommandAPIRepo.cs │ │ ├── Dtos │ │ ├── CommandCreateDto.cs │ │ ├── CommandReadDto.cs │ │ └── CommandUpdateDto.cs │ │ ├── Migrations │ │ ├── 20200524224711_AddCommandsToDB.Designer.cs │ │ ├── 20200524224711_AddCommandsToDB.cs │ │ └── CommandContextModelSnapshot.cs │ │ ├── Models │ │ └── Command.cs │ │ ├── Profiles │ │ └── CommandsProfile.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json └── test │ └── CommandAPI.Tests │ ├── CommandAPI.Tests.csproj │ ├── CommandTests.cs │ └── CommandsControllerTests.cs ├── Contributing.md ├── LICENSE.txt └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/.gitattributes -------------------------------------------------------------------------------- /9781484262542.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/9781484262542.jpg -------------------------------------------------------------------------------- /CommandAPIClient/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPIClient/.vscode/launch.json -------------------------------------------------------------------------------- /CommandAPIClient/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPIClient/.vscode/tasks.json -------------------------------------------------------------------------------- /CommandAPIClient/AuthConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPIClient/AuthConfig.cs -------------------------------------------------------------------------------- /CommandAPIClient/CommandAPIClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPIClient/CommandAPIClient.csproj -------------------------------------------------------------------------------- /CommandAPIClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPIClient/Program.cs -------------------------------------------------------------------------------- /CommandAPIClient/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPIClient/appsettings.json -------------------------------------------------------------------------------- /CommandAPIClient/bin/Debug/netcoreapp3.1/CommandAPIClient.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPIClient/bin/Debug/netcoreapp3.1/CommandAPIClient.deps.json -------------------------------------------------------------------------------- /CommandAPIClient/bin/Debug/netcoreapp3.1/CommandAPIClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPIClient/bin/Debug/netcoreapp3.1/CommandAPIClient.dll -------------------------------------------------------------------------------- /CommandAPIClient/bin/Debug/netcoreapp3.1/CommandAPIClient.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPIClient/bin/Debug/netcoreapp3.1/CommandAPIClient.exe -------------------------------------------------------------------------------- /CommandAPIClient/bin/Debug/netcoreapp3.1/CommandAPIClient.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPIClient/bin/Debug/netcoreapp3.1/CommandAPIClient.pdb -------------------------------------------------------------------------------- /CommandAPIClient/bin/Debug/netcoreapp3.1/CommandAPIClient.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPIClient/bin/Debug/netcoreapp3.1/CommandAPIClient.runtimeconfig.dev.json -------------------------------------------------------------------------------- /CommandAPIClient/bin/Debug/netcoreapp3.1/CommandAPIClient.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPIClient/bin/Debug/netcoreapp3.1/CommandAPIClient.runtimeconfig.json -------------------------------------------------------------------------------- /CommandAPIClient/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPIClient/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /CommandAPIClient/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPIClient/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll -------------------------------------------------------------------------------- /CommandAPIClient/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPIClient/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.FileExtensions.dll -------------------------------------------------------------------------------- /CommandAPIClient/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPIClient/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Json.dll -------------------------------------------------------------------------------- /CommandAPIClient/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPIClient/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /CommandAPIClient/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPIClient/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Abstractions.dll -------------------------------------------------------------------------------- /CommandAPIClient/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPIClient/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileProviders.Physical.dll -------------------------------------------------------------------------------- /CommandAPIClient/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileSystemGlobbing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPIClient/bin/Debug/netcoreapp3.1/Microsoft.Extensions.FileSystemGlobbing.dll -------------------------------------------------------------------------------- /CommandAPIClient/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPIClient/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /CommandAPIClient/bin/Debug/netcoreapp3.1/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPIClient/bin/Debug/netcoreapp3.1/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /CommandAPIClient/obj/CommandAPIClient.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPIClient/obj/CommandAPIClient.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /CommandAPIClient/obj/CommandAPIClient.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPIClient/obj/CommandAPIClient.csproj.nuget.g.props -------------------------------------------------------------------------------- /CommandAPIClient/obj/CommandAPIClient.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPIClient/obj/CommandAPIClient.csproj.nuget.g.targets -------------------------------------------------------------------------------- /CommandAPIClient/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPIClient/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs -------------------------------------------------------------------------------- /CommandAPIClient/obj/Debug/netcoreapp3.1/CommandAPIClient: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPIClient/obj/Debug/netcoreapp3.1/CommandAPIClient -------------------------------------------------------------------------------- /CommandAPIClient/obj/Debug/netcoreapp3.1/CommandAPIClient.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPIClient/obj/Debug/netcoreapp3.1/CommandAPIClient.AssemblyInfo.cs -------------------------------------------------------------------------------- /CommandAPIClient/obj/Debug/netcoreapp3.1/CommandAPIClient.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 7c7558353174d3baae864bd1a48da8cae824b9a2 2 | -------------------------------------------------------------------------------- /CommandAPIClient/obj/Debug/netcoreapp3.1/CommandAPIClient.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPIClient/obj/Debug/netcoreapp3.1/CommandAPIClient.assets.cache -------------------------------------------------------------------------------- /CommandAPIClient/obj/Debug/netcoreapp3.1/CommandAPIClient.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CommandAPIClient/obj/Debug/netcoreapp3.1/CommandAPIClient.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 887b4607ea5ff3f6ba269a4ae19b990087764611 2 | -------------------------------------------------------------------------------- /CommandAPIClient/obj/Debug/netcoreapp3.1/CommandAPIClient.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPIClient/obj/Debug/netcoreapp3.1/CommandAPIClient.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /CommandAPIClient/obj/Debug/netcoreapp3.1/CommandAPIClient.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPIClient/obj/Debug/netcoreapp3.1/CommandAPIClient.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /CommandAPIClient/obj/Debug/netcoreapp3.1/CommandAPIClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPIClient/obj/Debug/netcoreapp3.1/CommandAPIClient.dll -------------------------------------------------------------------------------- /CommandAPIClient/obj/Debug/netcoreapp3.1/CommandAPIClient.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPIClient/obj/Debug/netcoreapp3.1/CommandAPIClient.exe -------------------------------------------------------------------------------- /CommandAPIClient/obj/Debug/netcoreapp3.1/CommandAPIClient.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /CommandAPIClient/obj/Debug/netcoreapp3.1/CommandAPIClient.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPIClient/obj/Debug/netcoreapp3.1/CommandAPIClient.pdb -------------------------------------------------------------------------------- /CommandAPIClient/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPIClient/obj/project.assets.json -------------------------------------------------------------------------------- /CommandAPIClient/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPIClient/obj/project.nuget.cache -------------------------------------------------------------------------------- /CommandAPISolution/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPISolution/.gitignore -------------------------------------------------------------------------------- /CommandAPISolution/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPISolution/.vscode/launch.json -------------------------------------------------------------------------------- /CommandAPISolution/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPISolution/.vscode/tasks.json -------------------------------------------------------------------------------- /CommandAPISolution/CommandAPISolution.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPISolution/CommandAPISolution.sln -------------------------------------------------------------------------------- /CommandAPISolution/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPISolution/azure-pipelines.yml -------------------------------------------------------------------------------- /CommandAPISolution/src/CommandAPI/CommandAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPISolution/src/CommandAPI/CommandAPI.csproj -------------------------------------------------------------------------------- /CommandAPISolution/src/CommandAPI/Controllers/CommandsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPISolution/src/CommandAPI/Controllers/CommandsController.cs -------------------------------------------------------------------------------- /CommandAPISolution/src/CommandAPI/Data/CommandContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPISolution/src/CommandAPI/Data/CommandContext.cs -------------------------------------------------------------------------------- /CommandAPISolution/src/CommandAPI/Data/ICommandAPIRepo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPISolution/src/CommandAPI/Data/ICommandAPIRepo.cs -------------------------------------------------------------------------------- /CommandAPISolution/src/CommandAPI/Data/MockCommandAPIRepo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPISolution/src/CommandAPI/Data/MockCommandAPIRepo.cs -------------------------------------------------------------------------------- /CommandAPISolution/src/CommandAPI/Data/SqlCommandAPIRepo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPISolution/src/CommandAPI/Data/SqlCommandAPIRepo.cs -------------------------------------------------------------------------------- /CommandAPISolution/src/CommandAPI/Dtos/CommandCreateDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPISolution/src/CommandAPI/Dtos/CommandCreateDto.cs -------------------------------------------------------------------------------- /CommandAPISolution/src/CommandAPI/Dtos/CommandReadDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPISolution/src/CommandAPI/Dtos/CommandReadDto.cs -------------------------------------------------------------------------------- /CommandAPISolution/src/CommandAPI/Dtos/CommandUpdateDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPISolution/src/CommandAPI/Dtos/CommandUpdateDto.cs -------------------------------------------------------------------------------- /CommandAPISolution/src/CommandAPI/Migrations/20200524224711_AddCommandsToDB.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPISolution/src/CommandAPI/Migrations/20200524224711_AddCommandsToDB.Designer.cs -------------------------------------------------------------------------------- /CommandAPISolution/src/CommandAPI/Migrations/20200524224711_AddCommandsToDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPISolution/src/CommandAPI/Migrations/20200524224711_AddCommandsToDB.cs -------------------------------------------------------------------------------- /CommandAPISolution/src/CommandAPI/Migrations/CommandContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPISolution/src/CommandAPI/Migrations/CommandContextModelSnapshot.cs -------------------------------------------------------------------------------- /CommandAPISolution/src/CommandAPI/Models/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPISolution/src/CommandAPI/Models/Command.cs -------------------------------------------------------------------------------- /CommandAPISolution/src/CommandAPI/Profiles/CommandsProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPISolution/src/CommandAPI/Profiles/CommandsProfile.cs -------------------------------------------------------------------------------- /CommandAPISolution/src/CommandAPI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPISolution/src/CommandAPI/Program.cs -------------------------------------------------------------------------------- /CommandAPISolution/src/CommandAPI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPISolution/src/CommandAPI/Properties/launchSettings.json -------------------------------------------------------------------------------- /CommandAPISolution/src/CommandAPI/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPISolution/src/CommandAPI/Startup.cs -------------------------------------------------------------------------------- /CommandAPISolution/src/CommandAPI/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPISolution/src/CommandAPI/appsettings.Development.json -------------------------------------------------------------------------------- /CommandAPISolution/src/CommandAPI/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPISolution/src/CommandAPI/appsettings.json -------------------------------------------------------------------------------- /CommandAPISolution/test/CommandAPI.Tests/CommandAPI.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPISolution/test/CommandAPI.Tests/CommandAPI.Tests.csproj -------------------------------------------------------------------------------- /CommandAPISolution/test/CommandAPI.Tests/CommandTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPISolution/test/CommandAPI.Tests/CommandTests.cs -------------------------------------------------------------------------------- /CommandAPISolution/test/CommandAPI.Tests/CommandsControllerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/CommandAPISolution/test/CommandAPI.Tests/CommandsControllerTests.cs -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/Contributing.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/complete-asp.net-core-3-api-tutorial/HEAD/README.md --------------------------------------------------------------------------------