├── .dockerignore ├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── Commander.csproj ├── Controllers └── CommandsController.cs ├── Data ├── CommanderContext.cs ├── ICommanderRepo.cs ├── MockCommanderRepo.cs └── SqlCommanderRepo.cs ├── Dockerfile ├── Dtos ├── CommandCreateDto.cs ├── CommandReadDto.cs └── CommandUpdateDto.cs ├── Migrations ├── 20200829204856_InitialMigration.Designer.cs ├── 20200829204856_InitialMigration.cs └── CommanderContextModelSnapshot.cs ├── Models └── Command.cs ├── Profiles └── CommandsProfile.cs ├── Program.cs ├── Properties └── launchSettings.json ├── README.md ├── Startup.cs ├── appsettings.Development.json ├── bin └── Debug │ └── netcoreapp3.1 │ ├── AutoMapper.Extensions.Microsoft.DependencyInjection.dll │ ├── AutoMapper.dll │ ├── Commander.deps.json │ ├── Commander.dll │ ├── Commander.exe │ ├── Commander.pdb │ ├── Commander.runtimeconfig.dev.json │ ├── Commander.runtimeconfig.json │ ├── Microsoft.AspNetCore.JsonPatch.dll │ ├── Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ ├── Microsoft.Bcl.HashCode.dll │ ├── Microsoft.Data.SqlClient.dll │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ ├── Microsoft.EntityFrameworkCore.Design.dll │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll │ ├── Microsoft.EntityFrameworkCore.dll │ ├── Microsoft.Extensions.Caching.Abstractions.dll │ ├── Microsoft.Extensions.Caching.Memory.dll │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ ├── Microsoft.Extensions.Configuration.Binder.dll │ ├── Microsoft.Extensions.Configuration.dll │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ ├── Microsoft.Extensions.DependencyInjection.dll │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ ├── Microsoft.Extensions.Logging.dll │ ├── Microsoft.Extensions.Options.dll │ ├── Microsoft.Extensions.Primitives.dll │ ├── Microsoft.Identity.Client.dll │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ ├── Microsoft.IdentityModel.Logging.dll │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ ├── Microsoft.IdentityModel.Protocols.dll │ ├── Microsoft.IdentityModel.Tokens.dll │ ├── Microsoft.OpenApi.dll │ ├── Newtonsoft.Json.Bson.dll │ ├── Newtonsoft.Json.dll │ ├── Properties │ └── launchSettings.json │ ├── Swashbuckle.AspNetCore.Annotations.dll │ ├── Swashbuckle.AspNetCore.Newtonsoft.dll │ ├── Swashbuckle.AspNetCore.Swagger.dll │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ ├── System.Collections.Immutable.dll │ ├── System.Configuration.ConfigurationManager.dll │ ├── System.Diagnostics.DiagnosticSource.dll │ ├── System.IdentityModel.Tokens.Jwt.dll │ ├── System.Runtime.Caching.dll │ ├── System.Security.Cryptography.ProtectedData.dll │ ├── appsettings.Development.json │ └── runtimes │ ├── unix │ └── lib │ │ ├── netcoreapp2.0 │ │ └── System.Runtime.Caching.dll │ │ └── netcoreapp2.1 │ │ └── Microsoft.Data.SqlClient.dll │ ├── win-arm64 │ └── native │ │ └── sni.dll │ ├── win-x64 │ └── native │ │ └── sni.dll │ ├── win-x86 │ └── native │ │ └── sni.dll │ └── win │ └── lib │ ├── netcoreapp2.0 │ └── System.Runtime.Caching.dll │ ├── netcoreapp2.1 │ └── Microsoft.Data.SqlClient.dll │ └── netstandard2.0 │ └── System.Security.Cryptography.ProtectedData.dll ├── obj ├── Commander.csproj.EntityFrameworkCore.targets ├── Commander.csproj.nuget.dgspec.json ├── Commander.csproj.nuget.g.props ├── Commander.csproj.nuget.g.targets ├── Debug │ └── netcoreapp3.1 │ │ ├── .NETCoreApp,Version=v3.1.AssemblyAttributes.cs │ │ ├── Commander.AssemblyInfo.cs │ │ ├── Commander.AssemblyInfoInputs.cache │ │ ├── Commander.MvcApplicationPartsAssemblyInfo.cache │ │ ├── Commander.MvcApplicationPartsAssemblyInfo.cs │ │ ├── Commander.RazorAssemblyInfo.cache │ │ ├── Commander.RazorAssemblyInfo.cs │ │ ├── Commander.RazorTargetAssemblyInfo.cache │ │ ├── Commander.assets.cache │ │ ├── Commander.csproj.CopyComplete │ │ ├── Commander.csproj.CoreCompileInputs.cache │ │ ├── Commander.csproj.FileListAbsolute.txt │ │ ├── Commander.csprojAssemblyReference.cache │ │ ├── Commander.dll │ │ ├── Commander.exe │ │ ├── Commander.genruntimeconfig.cache │ │ ├── Commander.pdb │ │ ├── project.razor.json │ │ └── staticwebassets │ │ ├── Commander.StaticWebAssets.Manifest.cache │ │ └── Commander.StaticWebAssets.xml ├── project.assets.json └── project.nuget.cache └── wwwroot └── images └── easteregg.jpg /.dockerignore: -------------------------------------------------------------------------------- 1 | bin\ 2 | obj\ -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Commander.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/Commander.csproj -------------------------------------------------------------------------------- /Controllers/CommandsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/Controllers/CommandsController.cs -------------------------------------------------------------------------------- /Data/CommanderContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/Data/CommanderContext.cs -------------------------------------------------------------------------------- /Data/ICommanderRepo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/Data/ICommanderRepo.cs -------------------------------------------------------------------------------- /Data/MockCommanderRepo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/Data/MockCommanderRepo.cs -------------------------------------------------------------------------------- /Data/SqlCommanderRepo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/Data/SqlCommanderRepo.cs -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dtos/CommandCreateDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/Dtos/CommandCreateDto.cs -------------------------------------------------------------------------------- /Dtos/CommandReadDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/Dtos/CommandReadDto.cs -------------------------------------------------------------------------------- /Dtos/CommandUpdateDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/Dtos/CommandUpdateDto.cs -------------------------------------------------------------------------------- /Migrations/20200829204856_InitialMigration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/Migrations/20200829204856_InitialMigration.Designer.cs -------------------------------------------------------------------------------- /Migrations/20200829204856_InitialMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/Migrations/20200829204856_InitialMigration.cs -------------------------------------------------------------------------------- /Migrations/CommanderContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/Migrations/CommanderContextModelSnapshot.cs -------------------------------------------------------------------------------- /Models/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/Models/Command.cs -------------------------------------------------------------------------------- /Profiles/CommandsProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/Profiles/CommandsProfile.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/Properties/launchSettings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/README.md -------------------------------------------------------------------------------- /Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/Startup.cs -------------------------------------------------------------------------------- /appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/appsettings.Development.json -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/AutoMapper.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Commander.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Commander.deps.json -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Commander.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Commander.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Commander.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Commander.exe -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Commander.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Commander.pdb -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Commander.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Commander.runtimeconfig.dev.json -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Commander.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Commander.runtimeconfig.json -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.JsonPatch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.JsonPatch.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.Bcl.HashCode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Microsoft.Bcl.HashCode.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Design.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.SqlServer.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Newtonsoft.Json.Bson.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Newtonsoft.Json.Bson.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Properties/launchSettings.json -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.Annotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.Annotations.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.Newtonsoft.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.Newtonsoft.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerGen.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerUI.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/appsettings.Development.json -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/runtimes/win-arm64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/runtimes/win-arm64/native/sni.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/runtimes/win-x64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/sni.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/runtimes/win-x86/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/sni.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /obj/Commander.csproj.EntityFrameworkCore.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/obj/Commander.csproj.EntityFrameworkCore.targets -------------------------------------------------------------------------------- /obj/Commander.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/obj/Commander.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /obj/Commander.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/obj/Commander.csproj.nuget.g.props -------------------------------------------------------------------------------- /obj/Commander.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/obj/Commander.csproj.nuget.g.targets -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Commander.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/obj/Debug/netcoreapp3.1/Commander.AssemblyInfo.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Commander.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 0f406285354732d6a6e86d712b3e06b082c48d89 2 | -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Commander.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Commander.MvcApplicationPartsAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/obj/Debug/netcoreapp3.1/Commander.MvcApplicationPartsAssemblyInfo.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Commander.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | d618e43cb8eac2e0058b949603bdd9069e662bf5 2 | -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Commander.RazorAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/obj/Debug/netcoreapp3.1/Commander.RazorAssemblyInfo.cs -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Commander.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | e90babe7c12d2fcc5b0278f1156fc049e6f6e251 2 | -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Commander.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/obj/Debug/netcoreapp3.1/Commander.assets.cache -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Commander.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Commander.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | f9a441e32499ec38df6129d6dca662ffd9f93bf5 2 | -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Commander.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/obj/Debug/netcoreapp3.1/Commander.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Commander.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/obj/Debug/netcoreapp3.1/Commander.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Commander.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/obj/Debug/netcoreapp3.1/Commander.dll -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Commander.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/obj/Debug/netcoreapp3.1/Commander.exe -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Commander.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/Commander.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/obj/Debug/netcoreapp3.1/Commander.pdb -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/project.razor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/obj/Debug/netcoreapp3.1/project.razor.json -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/staticwebassets/Commander.StaticWebAssets.Manifest.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /obj/Debug/netcoreapp3.1/staticwebassets/Commander.StaticWebAssets.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/obj/project.assets.json -------------------------------------------------------------------------------- /obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/obj/project.nuget.cache -------------------------------------------------------------------------------- /wwwroot/images/easteregg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fryingpannn/.NETCore_MVC_RESTAPI/HEAD/wwwroot/images/easteregg.jpg --------------------------------------------------------------------------------