├── .vs └── OnionArchitecture │ ├── DesignTimeBuild │ └── .dtbcache.v2 │ └── v17 │ ├── .futdcache.v1 │ └── .suo ├── OnionArchitecture.sln └── src ├── Infrastructure └── Persistence │ ├── Database │ └── Context.cs │ ├── Migrations │ ├── 20220815132758_database.Designer.cs │ ├── 20220815132758_database.cs │ └── ContextModelSnapshot.cs │ ├── Persistence.csproj │ ├── Repositories │ ├── CategoryRepository.cs │ └── GenericRepository.cs │ ├── ServiceRegistration │ └── Registration.cs │ ├── bin │ └── Debug │ │ └── net6.0 │ │ ├── Application.dll │ │ ├── Application.pdb │ │ ├── Domain.dll │ │ ├── Domain.pdb │ │ ├── Persistence.deps.json │ │ ├── Persistence.dll │ │ ├── Persistence.pdb │ │ └── Persistence.runtimeconfig.json │ └── obj │ ├── Debug │ └── net6.0 │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ ├── Persistence.AssemblyInfo.cs │ │ ├── Persistence.AssemblyInfoInputs.cache │ │ ├── Persistence.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── Persistence.GlobalUsings.g.cs │ │ ├── Persistence.assets.cache │ │ ├── Persistence.csproj.AssemblyReference.cache │ │ ├── Persistence.csproj.BuildWithSkipAnalyzers │ │ ├── Persistence.csproj.CopyComplete │ │ ├── Persistence.csproj.CoreCompileInputs.cache │ │ ├── Persistence.csproj.FileListAbsolute.txt │ │ ├── Persistence.dll │ │ ├── Persistence.genruntimeconfig.cache │ │ ├── Persistence.pdb │ │ ├── Presentation.AssemblyInfo.cs │ │ ├── Presentation.AssemblyInfoInputs.cache │ │ ├── Presentation.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── Presentation.GlobalUsings.g.cs │ │ ├── Presentation.assets.cache │ │ ├── Presentation.csproj.AssemblyReference.cache │ │ ├── ref │ │ └── Persistence.dll │ │ └── refint │ │ └── Persistence.dll │ ├── Persistence.csproj.nuget.dgspec.json │ ├── Persistence.csproj.nuget.g.props │ ├── Persistence.csproj.nuget.g.targets │ ├── Presentation.csproj.nuget.dgspec.json │ ├── Presentation.csproj.nuget.g.props │ ├── Presentation.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── Presentation └── ApiCore │ ├── ApiCore.csproj │ ├── ApiCore.csproj.user │ ├── Controllers │ └── CategoryController.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── bin │ └── Debug │ │ └── net6.0 │ │ ├── ApiCore.deps.json │ │ ├── ApiCore.dll │ │ ├── ApiCore.exe │ │ ├── ApiCore.pdb │ │ ├── ApiCore.runtimeconfig.json │ │ ├── Application.dll │ │ ├── Application.pdb │ │ ├── AutoMapper.Extensions.Microsoft.DependencyInjection.dll │ │ ├── AutoMapper.dll │ │ ├── Domain.dll │ │ ├── Domain.pdb │ │ ├── Humanizer.dll │ │ ├── MediatR.Contracts.dll │ │ ├── MediatR.Extensions.Microsoft.DependencyInjection.dll │ │ ├── MediatR.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.Memory.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 │ │ ├── Microsoft.Win32.SystemEvents.dll │ │ ├── Persistence.dll │ │ ├── Persistence.pdb │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ │ ├── System.Configuration.ConfigurationManager.dll │ │ ├── System.Drawing.Common.dll │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ ├── System.Runtime.Caching.dll │ │ ├── System.Security.Cryptography.ProtectedData.dll │ │ ├── System.Security.Permissions.dll │ │ ├── System.Windows.Extensions.dll │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── runtimes │ │ ├── unix │ │ └── lib │ │ │ ├── netcoreapp3.0 │ │ │ └── System.Drawing.Common.dll │ │ │ └── netcoreapp3.1 │ │ │ └── Microsoft.Data.SqlClient.dll │ │ ├── win-arm │ │ └── native │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ │ ├── win-arm64 │ │ └── native │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ │ ├── win-x64 │ │ └── native │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ │ ├── win-x86 │ │ └── native │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ │ └── win │ │ └── lib │ │ ├── netcoreapp3.0 │ │ ├── Microsoft.Win32.SystemEvents.dll │ │ ├── System.Drawing.Common.dll │ │ └── System.Windows.Extensions.dll │ │ ├── netcoreapp3.1 │ │ └── Microsoft.Data.SqlClient.dll │ │ └── netstandard2.0 │ │ ├── System.Runtime.Caching.dll │ │ └── System.Security.Cryptography.ProtectedData.dll │ └── obj │ ├── ApiCore.csproj.nuget.dgspec.json │ ├── ApiCore.csproj.nuget.g.props │ ├── ApiCore.csproj.nuget.g.targets │ ├── Debug │ └── net6.0 │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ ├── ApiCore.AssemblyInfo.cs │ │ ├── ApiCore.AssemblyInfoInputs.cache │ │ ├── ApiCore.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── ApiCore.GlobalUsings.g.cs │ │ ├── ApiCore.MvcApplicationPartsAssemblyInfo.cache │ │ ├── ApiCore.MvcApplicationPartsAssemblyInfo.cs │ │ ├── ApiCore.assets.cache │ │ ├── ApiCore.csproj.AssemblyReference.cache │ │ ├── ApiCore.csproj.BuildWithSkipAnalyzers │ │ ├── ApiCore.csproj.CopyComplete │ │ ├── ApiCore.csproj.CoreCompileInputs.cache │ │ ├── ApiCore.csproj.FileListAbsolute.txt │ │ ├── ApiCore.dll │ │ ├── ApiCore.genruntimeconfig.cache │ │ ├── ApiCore.pdb │ │ ├── apphost.exe │ │ ├── ref │ │ └── ApiCore.dll │ │ ├── refint │ │ └── ApiCore.dll │ │ └── staticwebassets.build.json │ ├── project.assets.json │ ├── project.nuget.cache │ └── staticwebassets.pack.sentinel └── core ├── Application ├── Application.csproj ├── Dto │ └── CategoryModel.cs ├── Features │ ├── Command │ │ ├── CategoryCreateCommand │ │ │ └── CreateCategoryCommand.cs │ │ ├── CategoryDeleteCommand │ │ │ └── DeleteCategoryCommand.cs │ │ ├── CategoryUpdateCommand │ │ │ └── UpdateCategoryCommand.cs │ │ └── Handle │ │ │ ├── CategoryCreateCommandHandle │ │ │ └── CreateCategoryCommandHandle.cs │ │ │ ├── CategoryDeleteCommandHandle │ │ │ └── DeleteCategoryCommandHandle.cs │ │ │ └── CategoryUpdateHandle │ │ │ └── UpdateCategoryCommandHandle.cs │ └── Queries │ │ ├── GetByIdCategoryQuery │ │ └── CategoryGetByIdQuery.cs │ │ ├── Handle │ │ ├── GetByIdCategoryHandle │ │ │ └── CategoryGetByIdQueryHandle.cs │ │ └── ListCategoryQueryHandle │ │ │ └── CategoryListQueryHandle.cs │ │ └── ListCategoryQuery │ │ └── CategoryListQuery.cs ├── Interfaces │ ├── ICategoryRepository.cs │ └── IGenericRepository.cs ├── Mapping │ └── GeneralMapping.cs ├── ServiceRegistration │ └── Registration.cs ├── bin │ └── Debug │ │ └── net6.0 │ │ ├── Application.deps.json │ │ ├── Application.dll │ │ ├── Application.pdb │ │ ├── Domain.dll │ │ └── Domain.pdb └── obj │ ├── Application.csproj.nuget.dgspec.json │ ├── Application.csproj.nuget.g.props │ ├── Application.csproj.nuget.g.targets │ ├── Debug │ └── net6.0 │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ ├── Application.AssemblyInfo.cs │ │ ├── Application.AssemblyInfoInputs.cache │ │ ├── Application.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── Application.GlobalUsings.g.cs │ │ ├── Application.assets.cache │ │ ├── Application.csproj.AssemblyReference.cache │ │ ├── Application.csproj.BuildWithSkipAnalyzers │ │ ├── Application.csproj.CopyComplete │ │ ├── Application.csproj.CoreCompileInputs.cache │ │ ├── Application.csproj.FileListAbsolute.txt │ │ ├── Application.dll │ │ ├── Application.pdb │ │ ├── ref │ │ └── Application.dll │ │ └── refint │ │ └── Application.dll │ ├── project.assets.json │ └── project.nuget.cache └── Domain ├── Category.cs ├── Domain.csproj ├── bin └── Debug │ └── net6.0 │ ├── Domain.deps.json │ ├── Domain.dll │ └── Domain.pdb └── obj ├── Debug └── net6.0 │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ ├── Domain.AssemblyInfo.cs │ ├── Domain.AssemblyInfoInputs.cache │ ├── Domain.GeneratedMSBuildEditorConfig.editorconfig │ ├── Domain.GlobalUsings.g.cs │ ├── Domain.assets.cache │ ├── Domain.csproj.AssemblyReference.cache │ ├── Domain.csproj.CoreCompileInputs.cache │ ├── Domain.csproj.FileListAbsolute.txt │ ├── Domain.dll │ ├── Domain.pdb │ ├── ref │ └── Domain.dll │ └── refint │ └── Domain.dll ├── Domain.csproj.nuget.dgspec.json ├── Domain.csproj.nuget.g.props ├── Domain.csproj.nuget.g.targets ├── project.assets.json └── project.nuget.cache /.vs/OnionArchitecture/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/.vs/OnionArchitecture/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /.vs/OnionArchitecture/v17/.futdcache.v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/.vs/OnionArchitecture/v17/.futdcache.v1 -------------------------------------------------------------------------------- /.vs/OnionArchitecture/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/.vs/OnionArchitecture/v17/.suo -------------------------------------------------------------------------------- /OnionArchitecture.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/OnionArchitecture.sln -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Database/Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/Database/Context.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/20220815132758_database.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/Migrations/20220815132758_database.Designer.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/20220815132758_database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/Migrations/20220815132758_database.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Migrations/ContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/Migrations/ContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Persistence.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/Persistence.csproj -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Repositories/CategoryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/Repositories/CategoryRepository.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/Repositories/GenericRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/Repositories/GenericRepository.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/ServiceRegistration/Registration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/ServiceRegistration/Registration.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/bin/Debug/net6.0/Application.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/bin/Debug/net6.0/Application.dll -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/bin/Debug/net6.0/Application.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/bin/Debug/net6.0/Application.pdb -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/bin/Debug/net6.0/Domain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/bin/Debug/net6.0/Domain.dll -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/bin/Debug/net6.0/Domain.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/bin/Debug/net6.0/Domain.pdb -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/bin/Debug/net6.0/Persistence.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/bin/Debug/net6.0/Persistence.deps.json -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/bin/Debug/net6.0/Persistence.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/bin/Debug/net6.0/Persistence.dll -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/bin/Debug/net6.0/Persistence.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/bin/Debug/net6.0/Persistence.pdb -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/bin/Debug/net6.0/Persistence.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/bin/Debug/net6.0/Persistence.runtimeconfig.json -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/obj/Debug/net6.0/Persistence.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/obj/Debug/net6.0/Persistence.AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/obj/Debug/net6.0/Persistence.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/obj/Debug/net6.0/Persistence.AssemblyInfoInputs.cache -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/obj/Debug/net6.0/Persistence.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/obj/Debug/net6.0/Persistence.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/obj/Debug/net6.0/Persistence.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/obj/Debug/net6.0/Persistence.GlobalUsings.g.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/obj/Debug/net6.0/Persistence.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/obj/Debug/net6.0/Persistence.assets.cache -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/obj/Debug/net6.0/Persistence.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/obj/Debug/net6.0/Persistence.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/obj/Debug/net6.0/Persistence.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/obj/Debug/net6.0/Persistence.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/obj/Debug/net6.0/Persistence.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 854544b685337e14330b45ef11da35b0cfd8c07d 2 | -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/obj/Debug/net6.0/Persistence.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/obj/Debug/net6.0/Persistence.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/obj/Debug/net6.0/Persistence.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/obj/Debug/net6.0/Persistence.dll -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/obj/Debug/net6.0/Persistence.genruntimeconfig.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/obj/Debug/net6.0/Persistence.genruntimeconfig.cache -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/obj/Debug/net6.0/Persistence.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/obj/Debug/net6.0/Persistence.pdb -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/obj/Debug/net6.0/Presentation.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/obj/Debug/net6.0/Presentation.AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/obj/Debug/net6.0/Presentation.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 47c4ae542d5c5f59984c756f182d353b83892f30 2 | -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/obj/Debug/net6.0/Presentation.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/obj/Debug/net6.0/Presentation.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/obj/Debug/net6.0/Presentation.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/obj/Debug/net6.0/Presentation.GlobalUsings.g.cs -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/obj/Debug/net6.0/Presentation.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/obj/Debug/net6.0/Presentation.assets.cache -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/obj/Debug/net6.0/Presentation.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/obj/Debug/net6.0/Presentation.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/obj/Debug/net6.0/ref/Persistence.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/obj/Debug/net6.0/ref/Persistence.dll -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/obj/Debug/net6.0/refint/Persistence.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/obj/Debug/net6.0/refint/Persistence.dll -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/obj/Persistence.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/obj/Persistence.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/obj/Persistence.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/obj/Persistence.csproj.nuget.g.props -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/obj/Persistence.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/obj/Persistence.csproj.nuget.g.targets -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/obj/Presentation.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/obj/Presentation.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/obj/Presentation.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/obj/Presentation.csproj.nuget.g.props -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/obj/Presentation.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/obj/Presentation.csproj.nuget.g.targets -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/obj/project.assets.json -------------------------------------------------------------------------------- /src/Infrastructure/Persistence/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Infrastructure/Persistence/obj/project.nuget.cache -------------------------------------------------------------------------------- /src/Presentation/ApiCore/ApiCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/ApiCore.csproj -------------------------------------------------------------------------------- /src/Presentation/ApiCore/ApiCore.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/ApiCore.csproj.user -------------------------------------------------------------------------------- /src/Presentation/ApiCore/Controllers/CategoryController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/Controllers/CategoryController.cs -------------------------------------------------------------------------------- /src/Presentation/ApiCore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/Program.cs -------------------------------------------------------------------------------- /src/Presentation/ApiCore/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Presentation/ApiCore/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/appsettings.Development.json -------------------------------------------------------------------------------- /src/Presentation/ApiCore/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/appsettings.json -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/ApiCore.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/ApiCore.deps.json -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/ApiCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/ApiCore.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/ApiCore.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/ApiCore.exe -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/ApiCore.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/ApiCore.pdb -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/ApiCore.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/ApiCore.runtimeconfig.json -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/Application.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/Application.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/Application.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/Application.pdb -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/AutoMapper.Extensions.Microsoft.DependencyInjection.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/AutoMapper.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/Domain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/Domain.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/Domain.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/Domain.pdb -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/Humanizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/Humanizer.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/MediatR.Contracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/MediatR.Contracts.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/MediatR.Extensions.Microsoft.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/MediatR.Extensions.Microsoft.DependencyInjection.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/MediatR.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/MediatR.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Design.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Relational.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Relational.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/Microsoft.Extensions.Caching.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/Microsoft.Extensions.Caching.Memory.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/Persistence.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/Persistence.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/Persistence.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/Persistence.pdb -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/System.Security.Permissions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/System.Security.Permissions.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/System.Windows.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/System.Windows.Extensions.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/appsettings.Development.json -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/appsettings.json -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/obj/ApiCore.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/obj/ApiCore.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /src/Presentation/ApiCore/obj/ApiCore.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/obj/ApiCore.csproj.nuget.g.props -------------------------------------------------------------------------------- /src/Presentation/ApiCore/obj/ApiCore.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/obj/ApiCore.csproj.nuget.g.targets -------------------------------------------------------------------------------- /src/Presentation/ApiCore/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /src/Presentation/ApiCore/obj/Debug/net6.0/ApiCore.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/obj/Debug/net6.0/ApiCore.AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Presentation/ApiCore/obj/Debug/net6.0/ApiCore.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 71c2b0c71b331ed1087c3ee11f4619caeebc8edf 2 | -------------------------------------------------------------------------------- /src/Presentation/ApiCore/obj/Debug/net6.0/ApiCore.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/obj/Debug/net6.0/ApiCore.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /src/Presentation/ApiCore/obj/Debug/net6.0/ApiCore.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/obj/Debug/net6.0/ApiCore.GlobalUsings.g.cs -------------------------------------------------------------------------------- /src/Presentation/ApiCore/obj/Debug/net6.0/ApiCore.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Presentation/ApiCore/obj/Debug/net6.0/ApiCore.MvcApplicationPartsAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/obj/Debug/net6.0/ApiCore.MvcApplicationPartsAssemblyInfo.cs -------------------------------------------------------------------------------- /src/Presentation/ApiCore/obj/Debug/net6.0/ApiCore.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/obj/Debug/net6.0/ApiCore.assets.cache -------------------------------------------------------------------------------- /src/Presentation/ApiCore/obj/Debug/net6.0/ApiCore.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/obj/Debug/net6.0/ApiCore.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /src/Presentation/ApiCore/obj/Debug/net6.0/ApiCore.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Presentation/ApiCore/obj/Debug/net6.0/ApiCore.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Presentation/ApiCore/obj/Debug/net6.0/ApiCore.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 51b03574bfaed4ab297595e28548b7a0c89e7b20 2 | -------------------------------------------------------------------------------- /src/Presentation/ApiCore/obj/Debug/net6.0/ApiCore.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/obj/Debug/net6.0/ApiCore.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /src/Presentation/ApiCore/obj/Debug/net6.0/ApiCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/obj/Debug/net6.0/ApiCore.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/obj/Debug/net6.0/ApiCore.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | dae99dcf3a43360a6cc6275e71458c7460fb6fed 2 | -------------------------------------------------------------------------------- /src/Presentation/ApiCore/obj/Debug/net6.0/ApiCore.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/obj/Debug/net6.0/ApiCore.pdb -------------------------------------------------------------------------------- /src/Presentation/ApiCore/obj/Debug/net6.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/obj/Debug/net6.0/apphost.exe -------------------------------------------------------------------------------- /src/Presentation/ApiCore/obj/Debug/net6.0/ref/ApiCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/obj/Debug/net6.0/ref/ApiCore.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/obj/Debug/net6.0/refint/ApiCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/obj/Debug/net6.0/refint/ApiCore.dll -------------------------------------------------------------------------------- /src/Presentation/ApiCore/obj/Debug/net6.0/staticwebassets.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/obj/Debug/net6.0/staticwebassets.build.json -------------------------------------------------------------------------------- /src/Presentation/ApiCore/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/obj/project.assets.json -------------------------------------------------------------------------------- /src/Presentation/ApiCore/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/obj/project.nuget.cache -------------------------------------------------------------------------------- /src/Presentation/ApiCore/obj/staticwebassets.pack.sentinel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/Presentation/ApiCore/obj/staticwebassets.pack.sentinel -------------------------------------------------------------------------------- /src/core/Application/Application.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Application/Application.csproj -------------------------------------------------------------------------------- /src/core/Application/Dto/CategoryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Application/Dto/CategoryModel.cs -------------------------------------------------------------------------------- /src/core/Application/Features/Command/CategoryCreateCommand/CreateCategoryCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Application/Features/Command/CategoryCreateCommand/CreateCategoryCommand.cs -------------------------------------------------------------------------------- /src/core/Application/Features/Command/CategoryDeleteCommand/DeleteCategoryCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Application/Features/Command/CategoryDeleteCommand/DeleteCategoryCommand.cs -------------------------------------------------------------------------------- /src/core/Application/Features/Command/CategoryUpdateCommand/UpdateCategoryCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Application/Features/Command/CategoryUpdateCommand/UpdateCategoryCommand.cs -------------------------------------------------------------------------------- /src/core/Application/Features/Command/Handle/CategoryCreateCommandHandle/CreateCategoryCommandHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Application/Features/Command/Handle/CategoryCreateCommandHandle/CreateCategoryCommandHandle.cs -------------------------------------------------------------------------------- /src/core/Application/Features/Command/Handle/CategoryDeleteCommandHandle/DeleteCategoryCommandHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Application/Features/Command/Handle/CategoryDeleteCommandHandle/DeleteCategoryCommandHandle.cs -------------------------------------------------------------------------------- /src/core/Application/Features/Command/Handle/CategoryUpdateHandle/UpdateCategoryCommandHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Application/Features/Command/Handle/CategoryUpdateHandle/UpdateCategoryCommandHandle.cs -------------------------------------------------------------------------------- /src/core/Application/Features/Queries/GetByIdCategoryQuery/CategoryGetByIdQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Application/Features/Queries/GetByIdCategoryQuery/CategoryGetByIdQuery.cs -------------------------------------------------------------------------------- /src/core/Application/Features/Queries/Handle/GetByIdCategoryHandle/CategoryGetByIdQueryHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Application/Features/Queries/Handle/GetByIdCategoryHandle/CategoryGetByIdQueryHandle.cs -------------------------------------------------------------------------------- /src/core/Application/Features/Queries/Handle/ListCategoryQueryHandle/CategoryListQueryHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Application/Features/Queries/Handle/ListCategoryQueryHandle/CategoryListQueryHandle.cs -------------------------------------------------------------------------------- /src/core/Application/Features/Queries/ListCategoryQuery/CategoryListQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Application/Features/Queries/ListCategoryQuery/CategoryListQuery.cs -------------------------------------------------------------------------------- /src/core/Application/Interfaces/ICategoryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Application/Interfaces/ICategoryRepository.cs -------------------------------------------------------------------------------- /src/core/Application/Interfaces/IGenericRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Application/Interfaces/IGenericRepository.cs -------------------------------------------------------------------------------- /src/core/Application/Mapping/GeneralMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Application/Mapping/GeneralMapping.cs -------------------------------------------------------------------------------- /src/core/Application/ServiceRegistration/Registration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Application/ServiceRegistration/Registration.cs -------------------------------------------------------------------------------- /src/core/Application/bin/Debug/net6.0/Application.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Application/bin/Debug/net6.0/Application.deps.json -------------------------------------------------------------------------------- /src/core/Application/bin/Debug/net6.0/Application.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Application/bin/Debug/net6.0/Application.dll -------------------------------------------------------------------------------- /src/core/Application/bin/Debug/net6.0/Application.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Application/bin/Debug/net6.0/Application.pdb -------------------------------------------------------------------------------- /src/core/Application/bin/Debug/net6.0/Domain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Application/bin/Debug/net6.0/Domain.dll -------------------------------------------------------------------------------- /src/core/Application/bin/Debug/net6.0/Domain.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Application/bin/Debug/net6.0/Domain.pdb -------------------------------------------------------------------------------- /src/core/Application/obj/Application.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Application/obj/Application.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /src/core/Application/obj/Application.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Application/obj/Application.csproj.nuget.g.props -------------------------------------------------------------------------------- /src/core/Application/obj/Application.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Application/obj/Application.csproj.nuget.g.targets -------------------------------------------------------------------------------- /src/core/Application/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Application/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /src/core/Application/obj/Debug/net6.0/Application.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Application/obj/Debug/net6.0/Application.AssemblyInfo.cs -------------------------------------------------------------------------------- /src/core/Application/obj/Debug/net6.0/Application.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 902ad8dd3d4c1b0ee82fe4e9b2ada2b00a0eba7f 2 | -------------------------------------------------------------------------------- /src/core/Application/obj/Debug/net6.0/Application.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Application/obj/Debug/net6.0/Application.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /src/core/Application/obj/Debug/net6.0/Application.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Application/obj/Debug/net6.0/Application.GlobalUsings.g.cs -------------------------------------------------------------------------------- /src/core/Application/obj/Debug/net6.0/Application.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Application/obj/Debug/net6.0/Application.assets.cache -------------------------------------------------------------------------------- /src/core/Application/obj/Debug/net6.0/Application.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Application/obj/Debug/net6.0/Application.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /src/core/Application/obj/Debug/net6.0/Application.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/core/Application/obj/Debug/net6.0/Application.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/core/Application/obj/Debug/net6.0/Application.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 92951674c097fea5c849c4a8ec5202399a15387f 2 | -------------------------------------------------------------------------------- /src/core/Application/obj/Debug/net6.0/Application.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Application/obj/Debug/net6.0/Application.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /src/core/Application/obj/Debug/net6.0/Application.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Application/obj/Debug/net6.0/Application.dll -------------------------------------------------------------------------------- /src/core/Application/obj/Debug/net6.0/Application.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Application/obj/Debug/net6.0/Application.pdb -------------------------------------------------------------------------------- /src/core/Application/obj/Debug/net6.0/ref/Application.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Application/obj/Debug/net6.0/ref/Application.dll -------------------------------------------------------------------------------- /src/core/Application/obj/Debug/net6.0/refint/Application.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Application/obj/Debug/net6.0/refint/Application.dll -------------------------------------------------------------------------------- /src/core/Application/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Application/obj/project.assets.json -------------------------------------------------------------------------------- /src/core/Application/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Application/obj/project.nuget.cache -------------------------------------------------------------------------------- /src/core/Domain/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Domain/Category.cs -------------------------------------------------------------------------------- /src/core/Domain/Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Domain/Domain.csproj -------------------------------------------------------------------------------- /src/core/Domain/bin/Debug/net6.0/Domain.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Domain/bin/Debug/net6.0/Domain.deps.json -------------------------------------------------------------------------------- /src/core/Domain/bin/Debug/net6.0/Domain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Domain/bin/Debug/net6.0/Domain.dll -------------------------------------------------------------------------------- /src/core/Domain/bin/Debug/net6.0/Domain.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Domain/bin/Debug/net6.0/Domain.pdb -------------------------------------------------------------------------------- /src/core/Domain/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Domain/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /src/core/Domain/obj/Debug/net6.0/Domain.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Domain/obj/Debug/net6.0/Domain.AssemblyInfo.cs -------------------------------------------------------------------------------- /src/core/Domain/obj/Debug/net6.0/Domain.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Domain/obj/Debug/net6.0/Domain.AssemblyInfoInputs.cache -------------------------------------------------------------------------------- /src/core/Domain/obj/Debug/net6.0/Domain.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Domain/obj/Debug/net6.0/Domain.GeneratedMSBuildEditorConfig.editorconfig -------------------------------------------------------------------------------- /src/core/Domain/obj/Debug/net6.0/Domain.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Domain/obj/Debug/net6.0/Domain.GlobalUsings.g.cs -------------------------------------------------------------------------------- /src/core/Domain/obj/Debug/net6.0/Domain.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Domain/obj/Debug/net6.0/Domain.assets.cache -------------------------------------------------------------------------------- /src/core/Domain/obj/Debug/net6.0/Domain.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Domain/obj/Debug/net6.0/Domain.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /src/core/Domain/obj/Debug/net6.0/Domain.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | bec2faa0a659fdeb4668cf0ab9d2f9231a4cfd45 2 | -------------------------------------------------------------------------------- /src/core/Domain/obj/Debug/net6.0/Domain.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Domain/obj/Debug/net6.0/Domain.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /src/core/Domain/obj/Debug/net6.0/Domain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Domain/obj/Debug/net6.0/Domain.dll -------------------------------------------------------------------------------- /src/core/Domain/obj/Debug/net6.0/Domain.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Domain/obj/Debug/net6.0/Domain.pdb -------------------------------------------------------------------------------- /src/core/Domain/obj/Debug/net6.0/ref/Domain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Domain/obj/Debug/net6.0/ref/Domain.dll -------------------------------------------------------------------------------- /src/core/Domain/obj/Debug/net6.0/refint/Domain.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Domain/obj/Debug/net6.0/refint/Domain.dll -------------------------------------------------------------------------------- /src/core/Domain/obj/Domain.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Domain/obj/Domain.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /src/core/Domain/obj/Domain.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Domain/obj/Domain.csproj.nuget.g.props -------------------------------------------------------------------------------- /src/core/Domain/obj/Domain.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Domain/obj/Domain.csproj.nuget.g.targets -------------------------------------------------------------------------------- /src/core/Domain/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Domain/obj/project.assets.json -------------------------------------------------------------------------------- /src/core/Domain/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokay-kalkan/.Net-Core-6.0-Api-Onion-Architecture-CQRS-MediatR/HEAD/src/core/Domain/obj/project.nuget.cache --------------------------------------------------------------------------------