├── .vs ├── MVCProject │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ ├── config │ │ └── applicationhost.config │ ├── project-colors.json │ └── v17 │ │ ├── .futdcache.v1 │ │ └── .suo ├── VSWorkspaceState.json ├── projectMVC │ ├── config │ │ └── applicationhost.config │ ├── project-colors.json │ └── v17 │ │ └── .suo ├── slnx.sqlite └── tasks.vs.json ├── Business ├── Abstract │ ├── ILandService.cs │ ├── IPropertyService.cs │ ├── IRoleService.cs │ └── IUserService.cs ├── Business.csproj ├── Concrete │ ├── LandManager.cs │ ├── PropertyManager.cs │ ├── RoleManager.cs │ └── UserManager.cs ├── DependencyResolvers │ └── Autofac │ │ └── AutofacBusinessModule.cs ├── bin │ └── Debug │ │ └── net6.0 │ │ ├── Business.deps.json │ │ ├── Business.dll │ │ ├── Business.pdb │ │ ├── Core.dll │ │ ├── Core.pdb │ │ ├── DataAccess.dll │ │ ├── DataAccess.pdb │ │ ├── Entities.dll │ │ ├── Entities.pdb │ │ └── ref │ │ └── Business.dll └── obj │ ├── Business.csproj.nuget.dgspec.json │ ├── Business.csproj.nuget.g.props │ ├── Business.csproj.nuget.g.targets │ ├── Debug │ └── net6.0 │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ ├── Business.AssemblyInfo.cs │ │ ├── Business.AssemblyInfoInputs.cache │ │ ├── Business.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── Business.GlobalUsings.g.cs │ │ ├── Business.assets.cache │ │ ├── Business.csproj.AssemblyReference.cache │ │ ├── Business.csproj.CopyComplete │ │ ├── Business.csproj.CoreCompileInputs.cache │ │ ├── Business.csproj.FileListAbsolute.txt │ │ ├── Business.dll │ │ ├── Business.pdb │ │ └── ref │ │ └── Business.dll │ ├── Release │ └── net6.0 │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ ├── Business.AssemblyInfo.cs │ │ ├── Business.AssemblyInfoInputs.cache │ │ ├── Business.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── Business.GlobalUsings.g.cs │ │ ├── Business.assets.cache │ │ └── Business.csproj.AssemblyReference.cache │ ├── project.assets.json │ └── project.nuget.cache ├── Core ├── Core.csproj ├── DataAccess │ ├── EntityFramework │ │ └── EfEntityRepositoryBase.cs │ └── IEntityRepository.cs ├── Entities │ └── IEntity.cs ├── bin │ └── Debug │ │ └── net6.0 │ │ ├── Core.deps.json │ │ ├── Core.dll │ │ ├── Core.pdb │ │ └── ref │ │ └── Core.dll └── obj │ ├── Core.csproj.nuget.dgspec.json │ ├── Core.csproj.nuget.g.props │ ├── Core.csproj.nuget.g.targets │ ├── Debug │ └── net6.0 │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ ├── Core.AssemblyInfo.cs │ │ ├── Core.AssemblyInfoInputs.cache │ │ ├── Core.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── Core.GlobalUsings.g.cs │ │ ├── Core.assets.cache │ │ ├── Core.csproj.AssemblyReference.cache │ │ ├── Core.csproj.CoreCompileInputs.cache │ │ ├── Core.csproj.FileListAbsolute.txt │ │ ├── Core.dll │ │ ├── Core.pdb │ │ └── ref │ │ └── Core.dll │ ├── Release │ └── net6.0 │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ ├── Core.AssemblyInfo.cs │ │ ├── Core.AssemblyInfoInputs.cache │ │ ├── Core.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── Core.GlobalUsings.g.cs │ │ └── Core.assets.cache │ ├── project.assets.json │ └── project.nuget.cache ├── DataAccess ├── Abstract │ ├── ILandDal.cs │ ├── IPropertyDal.cs │ ├── IRoleDal.cs │ └── IUserDal.cs ├── Concrete │ └── EntityFramework │ │ ├── EfLandDal.cs │ │ ├── EfPropertyDal.cs │ │ ├── EfRoleDal.cs │ │ ├── EfUserDal.cs │ │ └── RealtyContext.cs ├── DataAccess.csproj ├── DataAccess.csproj.user ├── bin │ └── Debug │ │ └── net6.0 │ │ ├── Core.dll │ │ ├── Core.pdb │ │ ├── DataAccess.deps.json │ │ ├── DataAccess.dll │ │ ├── DataAccess.pdb │ │ ├── Entities.dll │ │ ├── Entities.pdb │ │ └── ref │ │ └── DataAccess.dll └── obj │ ├── DataAccess.csproj.nuget.dgspec.json │ ├── DataAccess.csproj.nuget.g.props │ ├── DataAccess.csproj.nuget.g.targets │ ├── Debug │ └── net6.0 │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ ├── DataAccess.AssemblyInfo.cs │ │ ├── DataAccess.AssemblyInfoInputs.cache │ │ ├── DataAccess.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── DataAccess.GlobalUsings.g.cs │ │ ├── DataAccess.assets.cache │ │ ├── DataAccess.csproj.AssemblyReference.cache │ │ ├── DataAccess.csproj.CopyComplete │ │ ├── DataAccess.csproj.CoreCompileInputs.cache │ │ ├── DataAccess.csproj.FileListAbsolute.txt │ │ ├── DataAccess.dll │ │ ├── DataAccess.pdb │ │ └── ref │ │ └── DataAccess.dll │ ├── Release │ └── net6.0 │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ ├── DataAccess.AssemblyInfo.cs │ │ ├── DataAccess.AssemblyInfoInputs.cache │ │ ├── DataAccess.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── DataAccess.GlobalUsings.g.cs │ │ └── DataAccess.assets.cache │ ├── project.assets.json │ └── project.nuget.cache ├── Entities ├── Concrete │ ├── Land.cs │ ├── Property.cs │ ├── Role.cs │ └── User.cs ├── Entities.csproj ├── bin │ └── Debug │ │ └── net6.0 │ │ ├── Core.dll │ │ ├── Core.pdb │ │ ├── Entities.deps.json │ │ ├── Entities.dll │ │ ├── Entities.pdb │ │ └── ref │ │ └── Entities.dll └── obj │ ├── Debug │ └── net6.0 │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ ├── Entities.AssemblyInfo.cs │ │ ├── Entities.AssemblyInfoInputs.cache │ │ ├── Entities.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── Entities.GlobalUsings.g.cs │ │ ├── Entities.assets.cache │ │ ├── Entities.csproj.AssemblyReference.cache │ │ ├── Entities.csproj.CopyComplete │ │ ├── Entities.csproj.CoreCompileInputs.cache │ │ ├── Entities.csproj.FileListAbsolute.txt │ │ ├── Entities.dll │ │ ├── Entities.pdb │ │ └── ref │ │ └── Entities.dll │ ├── Entities.csproj.nuget.dgspec.json │ ├── Entities.csproj.nuget.g.props │ ├── Entities.csproj.nuget.g.targets │ ├── Release │ └── net6.0 │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ ├── Entities.AssemblyInfo.cs │ │ ├── Entities.AssemblyInfoInputs.cache │ │ ├── Entities.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── Entities.GlobalUsings.g.cs │ │ └── Entities.assets.cache │ ├── project.assets.json │ └── project.nuget.cache ├── MVCProject.sln └── MvcWebUI ├── Controllers ├── HomeController.cs ├── LandController.cs ├── PropertyController.cs ├── RoleController.cs └── UserController.cs ├── Models ├── ErrorViewModel.cs ├── LandViewModel.cs └── UserViewModel.cs ├── MvcWebUI.csproj ├── MvcWebUI.csproj.user ├── Program.cs ├── Properties └── launchSettings.json ├── Views ├── Home │ ├── Index.cshtml │ └── Privacy.cshtml ├── Land │ ├── Add.cshtml │ └── Index.cshtml ├── Role │ ├── Add.cshtml │ ├── Index.cshtml │ └── Update.cshtml ├── Shared │ ├── Error.cshtml │ ├── _Footer.cshtml │ ├── _Header.cshtml │ ├── _Layout.cshtml │ └── _ValidationScriptsPartial.cshtml ├── User │ ├── Add.cshtml │ ├── Index.cshtml │ └── Update.cshtml ├── _ViewImports.cshtml └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json ├── bin └── Debug │ └── net6.0 │ ├── Autofac.Extensions.DependencyInjection.dll │ ├── Autofac.Extras.DynamicProxy.dll │ ├── Autofac.dll │ ├── Business.dll │ ├── Business.pdb │ ├── Castle.Core.dll │ ├── Core.dll │ ├── Core.pdb │ ├── DataAccess.dll │ ├── DataAccess.pdb │ ├── Entities.dll │ ├── Entities.pdb │ ├── Humanizer.dll │ ├── MessagePack.Annotations.dll │ ├── MessagePack.dll │ ├── Microsoft.AspNetCore.Razor.Language.dll │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ ├── Microsoft.Build.Locator.dll │ ├── Microsoft.CodeAnalysis.AnalyzerUtilities.dll │ ├── Microsoft.CodeAnalysis.CSharp.Features.dll │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.dll │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.dll │ ├── Microsoft.CodeAnalysis.CSharp.dll │ ├── Microsoft.CodeAnalysis.Features.dll │ ├── Microsoft.CodeAnalysis.Razor.dll │ ├── Microsoft.CodeAnalysis.Scripting.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.dll │ ├── Microsoft.CodeAnalysis.Workspaces.dll │ ├── Microsoft.CodeAnalysis.dll │ ├── Microsoft.Data.SqlClient.dll │ ├── Microsoft.DiaSymReader.dll │ ├── Microsoft.DotNet.Scaffolding.Shared.dll │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll │ ├── Microsoft.EntityFrameworkCore.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.VisualStudio.Debugger.Contracts.dll │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Core.dll │ ├── Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll │ ├── Microsoft.VisualStudio.Web.CodeGeneration.dll │ ├── Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll │ ├── Microsoft.Win32.SystemEvents.dll │ ├── MvcWebUI.deps.json │ ├── MvcWebUI.dll │ ├── MvcWebUI.exe │ ├── MvcWebUI.pdb │ ├── MvcWebUI.runtimeconfig.json │ ├── MvcWebUI.staticwebassets.runtime.json │ ├── Newtonsoft.Json.dll │ ├── NuGet.Common.dll │ ├── NuGet.Configuration.dll │ ├── NuGet.DependencyResolver.Core.dll │ ├── NuGet.Frameworks.dll │ ├── NuGet.LibraryModel.dll │ ├── NuGet.Packaging.dll │ ├── NuGet.ProjectModel.dll │ ├── NuGet.Protocol.dll │ ├── NuGet.Versioning.dll │ ├── System.Composition.AttributedModel.dll │ ├── System.Composition.Convention.dll │ ├── System.Composition.Hosting.dll │ ├── System.Composition.Runtime.dll │ ├── System.Composition.TypedParts.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 │ ├── cs │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Features.resources.dll │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── de │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Features.resources.dll │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── dotnet-aspnet-codegenerator-design.dll │ ├── es │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Features.resources.dll │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── fr │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Features.resources.dll │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── it │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Features.resources.dll │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── ja │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Features.resources.dll │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── ko │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Features.resources.dll │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── pl │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Features.resources.dll │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── pt-BR │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Features.resources.dll │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── ref │ └── MvcWebUI.dll │ ├── ru │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Features.resources.dll │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── runtimes │ ├── unix │ │ └── lib │ │ │ ├── netcoreapp3.0 │ │ │ └── System.Drawing.Common.dll │ │ │ └── netcoreapp3.1 │ │ │ └── Microsoft.Data.SqlClient.dll │ ├── win-arm │ │ ├── lib │ │ │ └── net6.0 │ │ │ │ └── dotnet-aspnet-codegenerator-design.exe │ │ └── native │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ ├── win-arm64 │ │ ├── lib │ │ │ └── net6.0 │ │ │ │ └── dotnet-aspnet-codegenerator-design.exe │ │ └── 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 │ ├── tr │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Features.resources.dll │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ ├── zh-Hans │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Features.resources.dll │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll │ └── zh-Hant │ ├── Microsoft.CodeAnalysis.CSharp.Features.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ ├── Microsoft.CodeAnalysis.Features.resources.dll │ ├── Microsoft.CodeAnalysis.Scripting.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll │ ├── Microsoft.CodeAnalysis.VisualBasic.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ └── Microsoft.CodeAnalysis.resources.dll ├── obj ├── Debug │ ├── net5.0 │ │ └── MvcWebUI.assets.cache │ ├── net6.0 │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ ├── MvcWebUI.AssemblyInfo.cs │ │ ├── MvcWebUI.AssemblyInfoInputs.cache │ │ ├── MvcWebUI.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── MvcWebUI.GlobalUsings.g.cs │ │ ├── MvcWebUI.MvcApplicationPartsAssemblyInfo.cache │ │ ├── MvcWebUI.RazorAssemblyInfo.cache │ │ ├── MvcWebUI.RazorAssemblyInfo.cs │ │ ├── MvcWebUI.assets.cache │ │ ├── MvcWebUI.csproj.AssemblyReference.cache │ │ ├── MvcWebUI.csproj.CopyComplete │ │ ├── MvcWebUI.csproj.CoreCompileInputs.cache │ │ ├── MvcWebUI.csproj.FileListAbsolute.txt │ │ ├── MvcWebUI.dll │ │ ├── MvcWebUI.genruntimeconfig.cache │ │ ├── MvcWebUI.pdb │ │ ├── apphost.exe │ │ ├── project.razor.json │ │ ├── ref │ │ │ └── MvcWebUI.dll │ │ ├── scopedcss │ │ │ └── bundle │ │ │ │ └── MvcWebUI.styles.css │ │ ├── staticwebassets.build.json │ │ └── staticwebassets.development.json │ └── netcoreapp3.1 │ │ └── MvcWebUI.assets.cache ├── MvcWebUI.csproj.nuget.dgspec.json ├── MvcWebUI.csproj.nuget.g.props ├── MvcWebUI.csproj.nuget.g.targets ├── Release │ └── net6.0 │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ ├── MvcWebUI.AssemblyInfo.cs │ │ ├── MvcWebUI.AssemblyInfoInputs.cache │ │ ├── MvcWebUI.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── MvcWebUI.GlobalUsings.g.cs │ │ ├── MvcWebUI.RazorAssemblyInfo.cache │ │ ├── MvcWebUI.RazorAssemblyInfo.cs │ │ └── MvcWebUI.assets.cache ├── project.assets.json ├── project.nuget.cache └── staticwebassets.pack.sentinel └── wwwroot ├── css └── site.css ├── favicon.ico ├── images ├── Building.jpg ├── Building2.jpg ├── Home.jpg ├── Land.jpg └── res.jpg ├── js └── site.js └── lib ├── bootstrap ├── LICENSE └── dist │ ├── css │ ├── Style.css │ ├── bootstrap-grid.css │ ├── bootstrap-grid.css.map │ ├── bootstrap-grid.min.css │ ├── bootstrap-grid.min.css.map │ ├── bootstrap-grid.rtl.css │ ├── bootstrap-grid.rtl.css.map │ ├── bootstrap-grid.rtl.min.css │ ├── bootstrap-grid.rtl.min.css.map │ ├── bootstrap-reboot.css │ ├── bootstrap-reboot.css.map │ ├── bootstrap-reboot.min.css │ ├── bootstrap-reboot.min.css.map │ ├── bootstrap-reboot.rtl.css │ ├── bootstrap-reboot.rtl.css.map │ ├── bootstrap-reboot.rtl.min.css │ ├── bootstrap-reboot.rtl.min.css.map │ ├── bootstrap-utilities.css │ ├── bootstrap-utilities.css.map │ ├── bootstrap-utilities.min.css │ ├── bootstrap-utilities.min.css.map │ ├── bootstrap-utilities.rtl.css │ ├── bootstrap-utilities.rtl.css.map │ ├── bootstrap-utilities.rtl.min.css │ ├── bootstrap-utilities.rtl.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── bootstrap.min.css.map │ ├── bootstrap.rtl.css │ ├── bootstrap.rtl.css.map │ ├── bootstrap.rtl.min.css │ ├── bootstrap.rtl.min.css.map │ └── styles.css │ └── js │ ├── bootstrap.bundle.js │ ├── bootstrap.bundle.js.map │ ├── bootstrap.bundle.min.js │ ├── bootstrap.bundle.min.js.map │ ├── bootstrap.esm.js │ ├── bootstrap.esm.js.map │ ├── bootstrap.esm.min.js │ ├── bootstrap.esm.min.js.map │ ├── bootstrap.js │ ├── bootstrap.js.map │ ├── bootstrap.min.js │ ├── bootstrap.min.js.map │ └── scripts.js ├── jquery-validation-unobtrusive ├── LICENSE.txt ├── jquery.validate.unobtrusive.js └── jquery.validate.unobtrusive.min.js ├── jquery-validation ├── LICENSE.md └── dist │ ├── additional-methods.js │ ├── additional-methods.min.js │ ├── jquery.validate.js │ └── jquery.validate.min.js └── jquery ├── LICENSE.txt └── dist ├── jquery.js ├── jquery.min.js └── jquery.min.map /.vs/MVCProject/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/.vs/MVCProject/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /.vs/MVCProject/project-colors.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": 1, 3 | "ProjectMap": { 4 | "f4d5fb92-22e0-4d44-9118-48a85da1fc90": { 5 | "ProjectGuid": "f4d5fb92-22e0-4d44-9118-48a85da1fc90", 6 | "DisplayName": "Concrete", 7 | "ColorIndex": 0 8 | }, 9 | "413e27f1-8043-4af9-9dcd-e91b438514e6": { 10 | "ProjectGuid": "413e27f1-8043-4af9-9dcd-e91b438514e6", 11 | "DisplayName": "Entities", 12 | "ColorIndex": 1 13 | }, 14 | "12f8e9e8-ec14-46b6-9130-35838c041cf7": { 15 | "ProjectGuid": "12f8e9e8-ec14-46b6-9130-35838c041cf7", 16 | "DisplayName": "Entities", 17 | "ColorIndex": 2 18 | }, 19 | "a7995d94-23b5-475d-9206-d108f78cbf32": { 20 | "ProjectGuid": "a7995d94-23b5-475d-9206-d108f78cbf32", 21 | "DisplayName": "DataAccess", 22 | "ColorIndex": 3 23 | }, 24 | "e66c0ca9-5f1b-461f-9211-9fbfa152d1ef": { 25 | "ProjectGuid": "e66c0ca9-5f1b-461f-9211-9fbfa152d1ef", 26 | "DisplayName": "Business", 27 | "ColorIndex": 4 28 | }, 29 | "021790d7-5ae9-46f6-b7ee-392809fab932": { 30 | "ProjectGuid": "021790d7-5ae9-46f6-b7ee-392809fab932", 31 | "DisplayName": "Core", 32 | "ColorIndex": 5 33 | }, 34 | "7c09f4d8-e7aa-48ec-80e5-882849636982": { 35 | "ProjectGuid": "7c09f4d8-e7aa-48ec-80e5-882849636982", 36 | "DisplayName": "MvcWebUI", 37 | "ColorIndex": 6 38 | }, 39 | "a2fe74e1-b743-11d0-ae1a-00a0c90fffc3": { 40 | "ProjectGuid": "a2fe74e1-b743-11d0-ae1a-00a0c90fffc3", 41 | "DisplayName": "Miscellaneous Files", 42 | "ColorIndex": -1 43 | } 44 | }, 45 | "NextColorIndex": 7 46 | } -------------------------------------------------------------------------------- /.vs/MVCProject/v17/.futdcache.v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/.vs/MVCProject/v17/.futdcache.v1 -------------------------------------------------------------------------------- /.vs/MVCProject/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/.vs/MVCProject/v17/.suo -------------------------------------------------------------------------------- /.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- 1 | { 2 | "ExpandedNodes": [], 3 | "PreviewInSolutionExplorer": false 4 | } -------------------------------------------------------------------------------- /.vs/projectMVC/project-colors.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": 1, 3 | "ProjectMap": { 4 | "a2fe74e1-b743-11d0-ae1a-00a0c90fffc3": { 5 | "ProjectGuid": "a2fe74e1-b743-11d0-ae1a-00a0c90fffc3", 6 | "DisplayName": "Miscellaneous Files", 7 | "ColorIndex": -1 8 | } 9 | }, 10 | "NextColorIndex": 0 11 | } -------------------------------------------------------------------------------- /.vs/projectMVC/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/.vs/projectMVC/v17/.suo -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/.vs/slnx.sqlite -------------------------------------------------------------------------------- /.vs/tasks.vs.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "0.2.1", 3 | "tasks": [ 4 | { 5 | "taskLabel": "task-MVCProject", 6 | "appliesTo": "MVCProject.sln", 7 | "type": "launch" 8 | } 9 | ] 10 | } -------------------------------------------------------------------------------- /Business/Abstract/ILandService.cs: -------------------------------------------------------------------------------- 1 | using Entities.Concrete; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Text; 6 | using System.Threading.Tasks; 7 | 8 | namespace Business.Abstract 9 | { 10 | public interface ILandService 11 | { 12 | List GetAll(); 13 | Land GetById(int id); 14 | void Add(Land land); 15 | void Update(Land land); 16 | void Delete(Land land); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Business/Abstract/IPropertyService.cs: -------------------------------------------------------------------------------- 1 | using Entities.Concrete; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Text; 6 | using System.Threading.Tasks; 7 | 8 | namespace Business.Abstract 9 | { 10 | public interface IPropertyService 11 | { 12 | List GetAll(); 13 | Property GetById(int id); 14 | void Add(Property property); 15 | void Update(Property property); 16 | void Delete(Property property); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Business/Abstract/IRoleService.cs: -------------------------------------------------------------------------------- 1 | using Entities.Concrete; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Text; 6 | using System.Threading.Tasks; 7 | 8 | namespace Business.Abstract 9 | { 10 | public interface IRoleService 11 | { 12 | List GetAll(); 13 | Role GetById(int id); 14 | void Add(Role role); 15 | void Update(Role role); 16 | void Delete(Role role); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Business/Abstract/IUserService.cs: -------------------------------------------------------------------------------- 1 | using Entities.Concrete; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Text; 6 | using System.Threading.Tasks; 7 | 8 | namespace Business.Abstract 9 | { 10 | public interface IUserService 11 | { 12 | List GetAll(); 13 | User GetById(int id); 14 | void Add(User user); 15 | void Update(User user); 16 | void Delete(User user); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Business/Business.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net6.0 5 | enable 6 | enable 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /Business/Concrete/LandManager.cs: -------------------------------------------------------------------------------- 1 | using Business.Abstract; 2 | using DataAccess.Abstract; 3 | using Entities.Concrete; 4 | using System; 5 | using System.Collections.Generic; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | 10 | namespace Business.Concrete 11 | { 12 | public class LandManager : ILandService 13 | { 14 | ILandDal _landDal; 15 | public LandManager(ILandDal landDal) 16 | { 17 | _landDal = landDal; 18 | } 19 | public void Add(Land land) 20 | { 21 | _landDal.Add(land); 22 | } 23 | 24 | public void Delete(Land land) 25 | { 26 | _landDal.Delete(land); 27 | } 28 | 29 | public List GetAll() 30 | { 31 | return _landDal.GetLandsAndProperty(); 32 | } 33 | 34 | public Land GetById(int id) 35 | { 36 | return _landDal.Get(x=>x.LandId == id); 37 | } 38 | 39 | public void Update(Land land) 40 | { 41 | _landDal.Update(land); 42 | } 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /Business/Concrete/PropertyManager.cs: -------------------------------------------------------------------------------- 1 | using Business.Abstract; 2 | using DataAccess.Abstract; 3 | using Entities.Concrete; 4 | using System; 5 | using System.Collections.Generic; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | 10 | namespace Business.Concrete 11 | { 12 | public class PropertyManager : IPropertyService 13 | { 14 | IPropertyDal _propertyDal; 15 | public PropertyManager(IPropertyDal propertyDal) 16 | { 17 | _propertyDal = propertyDal; 18 | } 19 | 20 | public void Add(Property property) 21 | { 22 | _propertyDal.Add(property); 23 | } 24 | 25 | public void Delete(Property property) 26 | { 27 | _propertyDal.Delete(property); 28 | } 29 | 30 | public List GetAll() 31 | { 32 | return _propertyDal.GetAll(); 33 | } 34 | 35 | public Property GetById(int id) 36 | { 37 | return _propertyDal.Get(x=>x.PropertyId == id); 38 | } 39 | 40 | public void Update(Property property) 41 | { 42 | _propertyDal.Update(property); 43 | } 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /Business/Concrete/RoleManager.cs: -------------------------------------------------------------------------------- 1 | using Business.Abstract; 2 | using DataAccess.Abstract; 3 | using Entities.Concrete; 4 | using System; 5 | using System.Collections.Generic; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | 10 | namespace Business.Concrete 11 | { 12 | public class RoleManager : IRoleService 13 | { 14 | IRoleDal _roleDal; 15 | public RoleManager(IRoleDal roleDal) 16 | { 17 | _roleDal = roleDal; 18 | } 19 | public void Add(Role role) 20 | { 21 | _roleDal.Add(role); 22 | } 23 | public void Delete(Role role) 24 | { 25 | _roleDal.Delete(role); 26 | } 27 | 28 | public List GetAll() 29 | { 30 | return _roleDal.GetAllRole(); 31 | } 32 | 33 | public Role GetById(int id) 34 | { 35 | return _roleDal.Get(x=>x.RoleId == id); 36 | } 37 | 38 | public void Update(Role role) 39 | { 40 | _roleDal.Update(role); 41 | } 42 | 43 | 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /Business/Concrete/UserManager.cs: -------------------------------------------------------------------------------- 1 | using Business.Abstract; 2 | using DataAccess.Abstract; 3 | using Entities.Concrete; 4 | using System; 5 | using System.Collections.Generic; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | 10 | namespace Business.Concrete 11 | { 12 | public class UserManager : IUserService 13 | { 14 | IUserDal _userDal; 15 | public UserManager(IUserDal userDal) 16 | { 17 | _userDal = userDal; 18 | } 19 | 20 | public void Add(User user) 21 | { 22 | _userDal.Add(user); 23 | } 24 | 25 | public void Delete(User user) 26 | { 27 | _userDal.Delete(user); 28 | } 29 | 30 | public List GetAll() 31 | { 32 | return _userDal.GetUsersRoleName(); 33 | } 34 | 35 | public User GetById(int id) 36 | { 37 | return _userDal.Get(u => u.UserId == id); 38 | } 39 | 40 | public void Update(User user) 41 | { 42 | _userDal.Update(user); 43 | } 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /Business/DependencyResolvers/Autofac/AutofacBusinessModule.cs: -------------------------------------------------------------------------------- 1 | using Autofac; 2 | using Business.Abstract; 3 | using Business.Concrete; 4 | using DataAccess.Abstract; 5 | using DataAccess.Concrete.EntityFramework; 6 | using System; 7 | using System.Collections.Generic; 8 | using System.Linq; 9 | using System.Text; 10 | using System.Threading.Tasks; 11 | 12 | namespace Business.DependencyResolvers.Autofac 13 | { 14 | public class AutofacBusinessModule : Module 15 | { 16 | protected override void Load(ContainerBuilder builder) 17 | { 18 | builder.RegisterType().As().SingleInstance(); 19 | builder.RegisterType().As().SingleInstance(); 20 | 21 | builder.RegisterType().As().SingleInstance(); 22 | builder.RegisterType().As().SingleInstance(); 23 | 24 | builder.RegisterType().As().SingleInstance(); 25 | builder.RegisterType().As().SingleInstance(); 26 | 27 | builder.RegisterType().As().SingleInstance(); 28 | builder.RegisterType().As().SingleInstance(); 29 | 30 | } 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /Business/bin/Debug/net6.0/Business.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/Business/bin/Debug/net6.0/Business.dll -------------------------------------------------------------------------------- /Business/bin/Debug/net6.0/Business.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/Business/bin/Debug/net6.0/Business.pdb -------------------------------------------------------------------------------- /Business/bin/Debug/net6.0/Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/Business/bin/Debug/net6.0/Core.dll -------------------------------------------------------------------------------- /Business/bin/Debug/net6.0/Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/Business/bin/Debug/net6.0/Core.pdb -------------------------------------------------------------------------------- /Business/bin/Debug/net6.0/DataAccess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/Business/bin/Debug/net6.0/DataAccess.dll -------------------------------------------------------------------------------- /Business/bin/Debug/net6.0/DataAccess.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/Business/bin/Debug/net6.0/DataAccess.pdb -------------------------------------------------------------------------------- /Business/bin/Debug/net6.0/Entities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/Business/bin/Debug/net6.0/Entities.dll -------------------------------------------------------------------------------- /Business/bin/Debug/net6.0/Entities.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/Business/bin/Debug/net6.0/Entities.pdb -------------------------------------------------------------------------------- /Business/bin/Debug/net6.0/ref/Business.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/Business/bin/Debug/net6.0/ref/Business.dll -------------------------------------------------------------------------------- /Business/obj/Business.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\cosku\.nuget\packages\ 9 | PackageReference 10 | 6.0.1 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Business/obj/Business.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /Business/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /Business/obj/Debug/net6.0/Business.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("Business")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("Business")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("Business")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /Business/obj/Debug/net6.0/Business.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 4faf343f83fe4ecc4cccc443e97716d83733f999 2 | -------------------------------------------------------------------------------- /Business/obj/Debug/net6.0/Business.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.TargetFramework = net6.0 3 | build_property.TargetPlatformMinVersion = 4 | build_property.UsingMicrosoftNETSdkWeb = 5 | build_property.ProjectTypeGuids = 6 | build_property.InvariantGlobalization = 7 | build_property.PlatformNeutralAssembly = 8 | build_property._SupportedPlatformList = Linux,macOS,Windows 9 | build_property.RootNamespace = Business 10 | build_property.ProjectDir = C:\Users\cosku\Source\Repos\projectMVC\Business\ 11 | -------------------------------------------------------------------------------- /Business/obj/Debug/net6.0/Business.GlobalUsings.g.cs: -------------------------------------------------------------------------------- 1 | // 2 | global using global::System; 3 | global using global::System.Collections.Generic; 4 | global using global::System.IO; 5 | global using global::System.Linq; 6 | global using global::System.Net.Http; 7 | global using global::System.Threading; 8 | global using global::System.Threading.Tasks; 9 | -------------------------------------------------------------------------------- /Business/obj/Debug/net6.0/Business.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/Business/obj/Debug/net6.0/Business.assets.cache -------------------------------------------------------------------------------- /Business/obj/Debug/net6.0/Business.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/Business/obj/Debug/net6.0/Business.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Business/obj/Debug/net6.0/Business.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/Business/obj/Debug/net6.0/Business.csproj.CopyComplete -------------------------------------------------------------------------------- /Business/obj/Debug/net6.0/Business.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | d63819b2a6b15c315b2e3fbfedce1108b2bf51e7 2 | -------------------------------------------------------------------------------- /Business/obj/Debug/net6.0/Business.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/Business/obj/Debug/net6.0/Business.dll -------------------------------------------------------------------------------- /Business/obj/Debug/net6.0/Business.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/Business/obj/Debug/net6.0/Business.pdb -------------------------------------------------------------------------------- /Business/obj/Debug/net6.0/ref/Business.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/Business/obj/Debug/net6.0/ref/Business.dll -------------------------------------------------------------------------------- /Business/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /Business/obj/Release/net6.0/Business.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("Business")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("Business")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("Business")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /Business/obj/Release/net6.0/Business.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | e39b5ed28208f2064efb1a6ea2035a20ece5575d 2 | -------------------------------------------------------------------------------- /Business/obj/Release/net6.0/Business.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.TargetFramework = net6.0 3 | build_property.TargetPlatformMinVersion = 4 | build_property.UsingMicrosoftNETSdkWeb = 5 | build_property.ProjectTypeGuids = 6 | build_property.InvariantGlobalization = 7 | build_property.PlatformNeutralAssembly = 8 | build_property._SupportedPlatformList = Linux,macOS,Windows 9 | build_property.RootNamespace = Business 10 | build_property.ProjectDir = C:\Users\cosku\Source\Repos\projectMVC\Business\ 11 | -------------------------------------------------------------------------------- /Business/obj/Release/net6.0/Business.GlobalUsings.g.cs: -------------------------------------------------------------------------------- 1 | // 2 | global using global::System; 3 | global using global::System.Collections.Generic; 4 | global using global::System.IO; 5 | global using global::System.Linq; 6 | global using global::System.Net.Http; 7 | global using global::System.Threading; 8 | global using global::System.Threading.Tasks; 9 | -------------------------------------------------------------------------------- /Business/obj/Release/net6.0/Business.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/Business/obj/Release/net6.0/Business.assets.cache -------------------------------------------------------------------------------- /Business/obj/Release/net6.0/Business.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/Business/obj/Release/net6.0/Business.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Core/Core.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net6.0 5 | enable 6 | enable 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /Core/DataAccess/EntityFramework/EfEntityRepositoryBase.cs: -------------------------------------------------------------------------------- 1 | using Core.Entities; 2 | using Microsoft.EntityFrameworkCore; 3 | using System; 4 | using System.Collections.Generic; 5 | using System.Linq; 6 | using System.Linq.Expressions; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | 10 | namespace Core.DataAccess.EntityFramework 11 | { 12 | public class EfEntityRepositoryBase : IEntityRepository 13 | where TEntity : class, IEntity, new() 14 | where TContext : DbContext, new() 15 | { 16 | public void Add(TEntity entity) 17 | { 18 | using (TContext context = new TContext()) 19 | { 20 | var addedEntity = context.Entry(entity); 21 | addedEntity.State = EntityState.Added; 22 | context.SaveChanges(); 23 | } 24 | } 25 | 26 | public void Delete(TEntity entity) 27 | { 28 | using (TContext context = new TContext()) 29 | { 30 | var deletedEntity = context.Entry(entity); 31 | deletedEntity.State = EntityState.Deleted; 32 | context.SaveChanges(); 33 | } 34 | } 35 | 36 | public TEntity Get(Expression> filter) 37 | { 38 | using (TContext context = new TContext()) 39 | { 40 | return context.Set().SingleOrDefault(filter); 41 | } 42 | } 43 | 44 | public List GetAll(Expression> filter = null) 45 | { 46 | using (TContext context = new TContext()) 47 | { 48 | return filter == null 49 | ? context.Set().ToList() 50 | : context.Set().Where(filter).ToList(); 51 | } 52 | } 53 | 54 | 55 | public void Update(TEntity entity) 56 | { 57 | using (TContext context = new TContext()) 58 | { 59 | var updatedEntity = context.Entry(entity); 60 | updatedEntity.State = EntityState.Modified; 61 | context.SaveChanges(); 62 | } 63 | } 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /Core/DataAccess/IEntityRepository.cs: -------------------------------------------------------------------------------- 1 | using Core.Entities; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Linq.Expressions; 6 | using System.Text; 7 | using System.Threading.Tasks; 8 | 9 | namespace Core.DataAccess 10 | { 11 | public interface IEntityRepository where T : class, IEntity, new() 12 | { 13 | List GetAll(Expression> filter = null); 14 | T Get(Expression> filter); 15 | void Add(T entity); 16 | void Update(T entity); 17 | void Delete(T entity); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Core/Entities/IEntity.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace Core.Entities 8 | { 9 | public interface IEntity 10 | { 11 | } 12 | public interface IEntity:IEntity where T : struct 13 | { 14 | public T Id { get; set; } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Core/bin/Debug/net6.0/Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/Core/bin/Debug/net6.0/Core.dll -------------------------------------------------------------------------------- /Core/bin/Debug/net6.0/Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/Core/bin/Debug/net6.0/Core.pdb -------------------------------------------------------------------------------- /Core/bin/Debug/net6.0/ref/Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/Core/bin/Debug/net6.0/ref/Core.dll -------------------------------------------------------------------------------- /Core/obj/Core.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "C:\\Users\\cosku\\Source\\Repos\\projectMVC\\Core\\Core.csproj": {} 5 | }, 6 | "projects": { 7 | "C:\\Users\\cosku\\Source\\Repos\\projectMVC\\Core\\Core.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "C:\\Users\\cosku\\Source\\Repos\\projectMVC\\Core\\Core.csproj", 11 | "projectName": "Core", 12 | "projectPath": "C:\\Users\\cosku\\Source\\Repos\\projectMVC\\Core\\Core.csproj", 13 | "packagesPath": "C:\\Users\\cosku\\.nuget\\packages\\", 14 | "outputPath": "C:\\Users\\cosku\\Source\\Repos\\projectMVC\\Core\\obj\\", 15 | "projectStyle": "PackageReference", 16 | "configFilePaths": [ 17 | "C:\\Users\\cosku\\AppData\\Roaming\\NuGet\\NuGet.Config", 18 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 19 | ], 20 | "originalTargetFrameworks": [ 21 | "net6.0" 22 | ], 23 | "sources": { 24 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 25 | "https://api.nuget.org/v3/index.json": {} 26 | }, 27 | "frameworks": { 28 | "net6.0": { 29 | "targetAlias": "net6.0", 30 | "projectReferences": {} 31 | } 32 | }, 33 | "warningProperties": { 34 | "warnAsError": [ 35 | "NU1605" 36 | ] 37 | } 38 | }, 39 | "frameworks": { 40 | "net6.0": { 41 | "targetAlias": "net6.0", 42 | "dependencies": { 43 | "Microsoft.EntityFrameworkCore.SqlServer": { 44 | "target": "Package", 45 | "version": "[6.0.0, )" 46 | } 47 | }, 48 | "imports": [ 49 | "net461", 50 | "net462", 51 | "net47", 52 | "net471", 53 | "net472", 54 | "net48" 55 | ], 56 | "assetTargetFallback": true, 57 | "warn": true, 58 | "frameworkReferences": { 59 | "Microsoft.NETCore.App": { 60 | "privateAssets": "all" 61 | } 62 | }, 63 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" 64 | } 65 | } 66 | } 67 | } 68 | } -------------------------------------------------------------------------------- /Core/obj/Core.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\cosku\.nuget\packages\ 9 | PackageReference 10 | 6.0.1 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Core/obj/Core.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /Core/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /Core/obj/Debug/net6.0/Core.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("Core")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("Core")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("Core")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /Core/obj/Debug/net6.0/Core.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | bb70b8d99ff9108d5c8f3ce9e50331d5e1228212 2 | -------------------------------------------------------------------------------- /Core/obj/Debug/net6.0/Core.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.TargetFramework = net6.0 3 | build_property.TargetPlatformMinVersion = 4 | build_property.UsingMicrosoftNETSdkWeb = 5 | build_property.ProjectTypeGuids = 6 | build_property.InvariantGlobalization = 7 | build_property.PlatformNeutralAssembly = 8 | build_property._SupportedPlatformList = Linux,macOS,Windows 9 | build_property.RootNamespace = Core 10 | build_property.ProjectDir = C:\Users\cosku\Source\Repos\projectMVC\Core\ 11 | -------------------------------------------------------------------------------- /Core/obj/Debug/net6.0/Core.GlobalUsings.g.cs: -------------------------------------------------------------------------------- 1 | // 2 | global using global::System; 3 | global using global::System.Collections.Generic; 4 | global using global::System.IO; 5 | global using global::System.Linq; 6 | global using global::System.Net.Http; 7 | global using global::System.Threading; 8 | global using global::System.Threading.Tasks; 9 | -------------------------------------------------------------------------------- /Core/obj/Debug/net6.0/Core.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/Core/obj/Debug/net6.0/Core.assets.cache -------------------------------------------------------------------------------- /Core/obj/Debug/net6.0/Core.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/Core/obj/Debug/net6.0/Core.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Core/obj/Debug/net6.0/Core.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 0f370e5b049c44a47418df791e3d3c17e47d1f15 2 | -------------------------------------------------------------------------------- /Core/obj/Debug/net6.0/Core.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\cosku\source\repos\MVCProject\Core\bin\Debug\net6.0\Core.deps.json 2 | C:\Users\cosku\source\repos\MVCProject\Core\bin\Debug\net6.0\Core.dll 3 | C:\Users\cosku\source\repos\MVCProject\Core\bin\Debug\net6.0\ref\Core.dll 4 | C:\Users\cosku\source\repos\MVCProject\Core\bin\Debug\net6.0\Core.pdb 5 | C:\Users\cosku\source\repos\MVCProject\Core\obj\Debug\net6.0\Core.csproj.AssemblyReference.cache 6 | C:\Users\cosku\source\repos\MVCProject\Core\obj\Debug\net6.0\Core.GeneratedMSBuildEditorConfig.editorconfig 7 | C:\Users\cosku\source\repos\MVCProject\Core\obj\Debug\net6.0\Core.AssemblyInfoInputs.cache 8 | C:\Users\cosku\source\repos\MVCProject\Core\obj\Debug\net6.0\Core.AssemblyInfo.cs 9 | C:\Users\cosku\source\repos\MVCProject\Core\obj\Debug\net6.0\Core.csproj.CoreCompileInputs.cache 10 | C:\Users\cosku\source\repos\MVCProject\Core\obj\Debug\net6.0\Core.dll 11 | C:\Users\cosku\source\repos\MVCProject\Core\obj\Debug\net6.0\ref\Core.dll 12 | C:\Users\cosku\source\repos\MVCProject\Core\obj\Debug\net6.0\Core.pdb 13 | C:\Users\cosku\Source\Repos\projectMVC\Core\bin\Debug\net6.0\Core.deps.json 14 | C:\Users\cosku\Source\Repos\projectMVC\Core\bin\Debug\net6.0\Core.dll 15 | C:\Users\cosku\Source\Repos\projectMVC\Core\bin\Debug\net6.0\ref\Core.dll 16 | C:\Users\cosku\Source\Repos\projectMVC\Core\bin\Debug\net6.0\Core.pdb 17 | C:\Users\cosku\Source\Repos\projectMVC\Core\obj\Debug\net6.0\Core.csproj.AssemblyReference.cache 18 | C:\Users\cosku\Source\Repos\projectMVC\Core\obj\Debug\net6.0\Core.GeneratedMSBuildEditorConfig.editorconfig 19 | C:\Users\cosku\Source\Repos\projectMVC\Core\obj\Debug\net6.0\Core.AssemblyInfoInputs.cache 20 | C:\Users\cosku\Source\Repos\projectMVC\Core\obj\Debug\net6.0\Core.AssemblyInfo.cs 21 | C:\Users\cosku\Source\Repos\projectMVC\Core\obj\Debug\net6.0\Core.csproj.CoreCompileInputs.cache 22 | C:\Users\cosku\Source\Repos\projectMVC\Core\obj\Debug\net6.0\Core.dll 23 | C:\Users\cosku\Source\Repos\projectMVC\Core\obj\Debug\net6.0\ref\Core.dll 24 | C:\Users\cosku\Source\Repos\projectMVC\Core\obj\Debug\net6.0\Core.pdb 25 | -------------------------------------------------------------------------------- /Core/obj/Debug/net6.0/Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/Core/obj/Debug/net6.0/Core.dll -------------------------------------------------------------------------------- /Core/obj/Debug/net6.0/Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/Core/obj/Debug/net6.0/Core.pdb -------------------------------------------------------------------------------- /Core/obj/Debug/net6.0/ref/Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/Core/obj/Debug/net6.0/ref/Core.dll -------------------------------------------------------------------------------- /Core/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /Core/obj/Release/net6.0/Core.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("Core")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("Core")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("Core")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /Core/obj/Release/net6.0/Core.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 28e9604a94587320e718fe397f8f2eb04b1be130 2 | -------------------------------------------------------------------------------- /Core/obj/Release/net6.0/Core.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.TargetFramework = net6.0 3 | build_property.TargetPlatformMinVersion = 4 | build_property.UsingMicrosoftNETSdkWeb = 5 | build_property.ProjectTypeGuids = 6 | build_property.InvariantGlobalization = 7 | build_property.PlatformNeutralAssembly = 8 | build_property._SupportedPlatformList = Linux,macOS,Windows 9 | build_property.RootNamespace = Core 10 | build_property.ProjectDir = C:\Users\cosku\Source\Repos\projectMVC\Core\ 11 | -------------------------------------------------------------------------------- /Core/obj/Release/net6.0/Core.GlobalUsings.g.cs: -------------------------------------------------------------------------------- 1 | // 2 | global using global::System; 3 | global using global::System.Collections.Generic; 4 | global using global::System.IO; 5 | global using global::System.Linq; 6 | global using global::System.Net.Http; 7 | global using global::System.Threading; 8 | global using global::System.Threading.Tasks; 9 | -------------------------------------------------------------------------------- /Core/obj/Release/net6.0/Core.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/Core/obj/Release/net6.0/Core.assets.cache -------------------------------------------------------------------------------- /DataAccess/Abstract/ILandDal.cs: -------------------------------------------------------------------------------- 1 | using Core.DataAccess; 2 | using Entities.Concrete; 3 | using System; 4 | using System.Collections.Generic; 5 | using System.Linq; 6 | using System.Text; 7 | using System.Threading.Tasks; 8 | 9 | namespace DataAccess.Abstract 10 | { 11 | public interface ILandDal:IEntityRepository 12 | { 13 | public List GetLandsAndProperty(); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /DataAccess/Abstract/IPropertyDal.cs: -------------------------------------------------------------------------------- 1 | using Core.DataAccess; 2 | using Entities.Concrete; 3 | using System; 4 | using System.Collections.Generic; 5 | using System.Linq; 6 | using System.Text; 7 | using System.Threading.Tasks; 8 | 9 | namespace DataAccess.Abstract 10 | { 11 | public interface IPropertyDal:IEntityRepository 12 | { 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /DataAccess/Abstract/IRoleDal.cs: -------------------------------------------------------------------------------- 1 | using Core.DataAccess; 2 | using Entities.Concrete; 3 | using System; 4 | using System.Collections.Generic; 5 | using System.Linq; 6 | using System.Text; 7 | using System.Threading.Tasks; 8 | 9 | namespace DataAccess.Abstract 10 | { 11 | public interface IRoleDal:IEntityRepository 12 | { 13 | public List GetAllRole(); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /DataAccess/Abstract/IUserDal.cs: -------------------------------------------------------------------------------- 1 | using Core.DataAccess; 2 | using Entities.Concrete; 3 | using System; 4 | using System.Collections.Generic; 5 | using System.Linq; 6 | using System.Text; 7 | using System.Threading.Tasks; 8 | 9 | namespace DataAccess.Abstract 10 | { 11 | public interface IUserDal:IEntityRepository 12 | { 13 | public List GetUsersRoleName(); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfLandDal.cs: -------------------------------------------------------------------------------- 1 | using Core.DataAccess.EntityFramework; 2 | using DataAccess.Abstract; 3 | using Entities.Concrete; 4 | using Microsoft.EntityFrameworkCore; 5 | using System; 6 | using System.Collections.Generic; 7 | using System.Linq; 8 | using System.Text; 9 | using System.Threading.Tasks; 10 | 11 | namespace DataAccess.Concrete.EntityFramework 12 | { 13 | public class EfLandDal : EfEntityRepositoryBase, ILandDal 14 | { 15 | public List GetLandsAndProperty() 16 | { 17 | using (var context = new RealtyContext()) 18 | { 19 | return context.Lands.Include(x => x.Property).ToList(); 20 | } 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfPropertyDal.cs: -------------------------------------------------------------------------------- 1 | using Core.DataAccess.EntityFramework; 2 | using DataAccess.Abstract; 3 | using Entities.Concrete; 4 | using System; 5 | using System.Collections.Generic; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | 10 | namespace DataAccess.Concrete.EntityFramework 11 | { 12 | public class EfPropertyDal: EfEntityRepositoryBase,IPropertyDal 13 | { 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfRoleDal.cs: -------------------------------------------------------------------------------- 1 | using Core.DataAccess.EntityFramework; 2 | using DataAccess.Abstract; 3 | using Entities.Concrete; 4 | using Microsoft.EntityFrameworkCore; 5 | using System; 6 | using System.Collections.Generic; 7 | using System.Linq; 8 | using System.Text; 9 | using System.Threading.Tasks; 10 | 11 | namespace DataAccess.Concrete.EntityFramework 12 | { 13 | public class EfRoleDal : EfEntityRepositoryBase, IRoleDal 14 | { 15 | public List GetAllRole() 16 | { 17 | using (var context = new RealtyContext()) 18 | { 19 | return context.Roles.Include(x=>x.Users).ToList(); 20 | } 21 | } 22 | 23 | 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/EfUserDal.cs: -------------------------------------------------------------------------------- 1 | using Core.DataAccess.EntityFramework; 2 | using DataAccess.Abstract; 3 | using Entities.Concrete; 4 | using Microsoft.EntityFrameworkCore; 5 | using System; 6 | using System.Collections.Generic; 7 | using System.Linq; 8 | using System.Text; 9 | using System.Threading.Tasks; 10 | 11 | namespace DataAccess.Concrete.EntityFramework 12 | { 13 | public class EfUserDal : EfEntityRepositoryBase, IUserDal 14 | { 15 | public List GetUsersRoleName() 16 | { 17 | using (var context = new RealtyContext()) 18 | { 19 | return context.Users.Include(x => x.Role).ToList(); 20 | } 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /DataAccess/Concrete/EntityFramework/RealtyContext.cs: -------------------------------------------------------------------------------- 1 | using Entities.Concrete; 2 | using Microsoft.EntityFrameworkCore; 3 | using System; 4 | using System.Collections.Generic; 5 | using System.Linq; 6 | using System.Text; 7 | using System.Threading.Tasks; 8 | 9 | namespace DataAccess.Concrete.EntityFramework 10 | { 11 | public class RealtyContext:DbContext 12 | { 13 | protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) 14 | { 15 | optionsBuilder.UseSqlServer(@"server=DESKTOP-V42T2II\SQLSERVER2019;Database=Realtor;Trusted_Connection=True"); 16 | //builder => builder.EnableRetryOnFailure()); 17 | } 18 | public DbSet Users { get; set; } 19 | public DbSet Roles { get; set; } 20 | public DbSet Lands { get; set; } 21 | public DbSet Properties { get; set; } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /DataAccess/DataAccess.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net6.0 5 | enable 6 | enable 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /DataAccess/DataAccess.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /DataAccess/bin/Debug/net6.0/Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/DataAccess/bin/Debug/net6.0/Core.dll -------------------------------------------------------------------------------- /DataAccess/bin/Debug/net6.0/Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/DataAccess/bin/Debug/net6.0/Core.pdb -------------------------------------------------------------------------------- /DataAccess/bin/Debug/net6.0/DataAccess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/DataAccess/bin/Debug/net6.0/DataAccess.dll -------------------------------------------------------------------------------- /DataAccess/bin/Debug/net6.0/DataAccess.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/DataAccess/bin/Debug/net6.0/DataAccess.pdb -------------------------------------------------------------------------------- /DataAccess/bin/Debug/net6.0/Entities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/DataAccess/bin/Debug/net6.0/Entities.dll -------------------------------------------------------------------------------- /DataAccess/bin/Debug/net6.0/Entities.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/DataAccess/bin/Debug/net6.0/Entities.pdb -------------------------------------------------------------------------------- /DataAccess/bin/Debug/net6.0/ref/DataAccess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/DataAccess/bin/Debug/net6.0/ref/DataAccess.dll -------------------------------------------------------------------------------- /DataAccess/obj/DataAccess.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\cosku\.nuget\packages\ 9 | PackageReference 10 | 6.0.1 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /DataAccess/obj/DataAccess.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /DataAccess/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /DataAccess/obj/Debug/net6.0/DataAccess.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("DataAccess")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("DataAccess")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("DataAccess")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /DataAccess/obj/Debug/net6.0/DataAccess.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 6d4e2c1d9f6ac45f776d2f2ae5ef73593c1376b9 2 | -------------------------------------------------------------------------------- /DataAccess/obj/Debug/net6.0/DataAccess.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.TargetFramework = net6.0 3 | build_property.TargetPlatformMinVersion = 4 | build_property.UsingMicrosoftNETSdkWeb = 5 | build_property.ProjectTypeGuids = 6 | build_property.InvariantGlobalization = 7 | build_property.PlatformNeutralAssembly = 8 | build_property._SupportedPlatformList = Linux,macOS,Windows 9 | build_property.RootNamespace = DataAccess 10 | build_property.ProjectDir = C:\Users\cosku\Source\Repos\projectMVC\DataAccess\ 11 | -------------------------------------------------------------------------------- /DataAccess/obj/Debug/net6.0/DataAccess.GlobalUsings.g.cs: -------------------------------------------------------------------------------- 1 | // 2 | global using global::System; 3 | global using global::System.Collections.Generic; 4 | global using global::System.IO; 5 | global using global::System.Linq; 6 | global using global::System.Net.Http; 7 | global using global::System.Threading; 8 | global using global::System.Threading.Tasks; 9 | -------------------------------------------------------------------------------- /DataAccess/obj/Debug/net6.0/DataAccess.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/DataAccess/obj/Debug/net6.0/DataAccess.assets.cache -------------------------------------------------------------------------------- /DataAccess/obj/Debug/net6.0/DataAccess.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/DataAccess/obj/Debug/net6.0/DataAccess.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /DataAccess/obj/Debug/net6.0/DataAccess.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/DataAccess/obj/Debug/net6.0/DataAccess.csproj.CopyComplete -------------------------------------------------------------------------------- /DataAccess/obj/Debug/net6.0/DataAccess.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 314d763348dbe5b89db57272f4a0bb75f7ae1f63 2 | -------------------------------------------------------------------------------- /DataAccess/obj/Debug/net6.0/DataAccess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/DataAccess/obj/Debug/net6.0/DataAccess.dll -------------------------------------------------------------------------------- /DataAccess/obj/Debug/net6.0/DataAccess.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/DataAccess/obj/Debug/net6.0/DataAccess.pdb -------------------------------------------------------------------------------- /DataAccess/obj/Debug/net6.0/ref/DataAccess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/DataAccess/obj/Debug/net6.0/ref/DataAccess.dll -------------------------------------------------------------------------------- /DataAccess/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /DataAccess/obj/Release/net6.0/DataAccess.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("DataAccess")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("DataAccess")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("DataAccess")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /DataAccess/obj/Release/net6.0/DataAccess.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | db47a8b192fdd690b3c97d682b7f45f2309fd5d2 2 | -------------------------------------------------------------------------------- /DataAccess/obj/Release/net6.0/DataAccess.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.TargetFramework = net6.0 3 | build_property.TargetPlatformMinVersion = 4 | build_property.UsingMicrosoftNETSdkWeb = 5 | build_property.ProjectTypeGuids = 6 | build_property.InvariantGlobalization = 7 | build_property.PlatformNeutralAssembly = 8 | build_property._SupportedPlatformList = Linux,macOS,Windows 9 | build_property.RootNamespace = DataAccess 10 | build_property.ProjectDir = C:\Users\cosku\Source\Repos\projectMVC\DataAccess\ 11 | -------------------------------------------------------------------------------- /DataAccess/obj/Release/net6.0/DataAccess.GlobalUsings.g.cs: -------------------------------------------------------------------------------- 1 | // 2 | global using global::System; 3 | global using global::System.Collections.Generic; 4 | global using global::System.IO; 5 | global using global::System.Linq; 6 | global using global::System.Net.Http; 7 | global using global::System.Threading; 8 | global using global::System.Threading.Tasks; 9 | -------------------------------------------------------------------------------- /DataAccess/obj/Release/net6.0/DataAccess.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/DataAccess/obj/Release/net6.0/DataAccess.assets.cache -------------------------------------------------------------------------------- /Entities/Concrete/Land.cs: -------------------------------------------------------------------------------- 1 | using Core.Entities; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.ComponentModel.DataAnnotations.Schema; 5 | using System.Linq; 6 | using System.Text; 7 | using System.Threading.Tasks; 8 | 9 | namespace Entities.Concrete 10 | { 11 | public class Land:IEntity 12 | { 13 | [ForeignKey("Property")] 14 | public int LandId { get; set; } 15 | public string Precedent { get; set; } 16 | public string Template { get; set; } 17 | public string DeedStatus { get; set; } 18 | public string LandType { get; set; } 19 | public string ExchangeSatus { get; set; } 20 | 21 | public virtual Property Property { get; set; } 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /Entities/Concrete/Property.cs: -------------------------------------------------------------------------------- 1 | using Core.Entities; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Text; 6 | using System.Threading.Tasks; 7 | 8 | namespace Entities.Concrete 9 | { 10 | public class Property : IEntity 11 | { 12 | 13 | public int PropertyId { get; set; } 14 | public int Price { get; set; } 15 | public string Picture { get; set; } 16 | public string Video { get; set; } 17 | public DateTime ListingDate { get; set; } 18 | public string AdvertNo { get; set; } 19 | public string AdvertState { get; set; } 20 | public int Square { get; set; } 21 | public string City { get; set; } 22 | public string District { get; set; } 23 | public string Street { get; set; } 24 | 25 | public virtual Land Land { get; set; } 26 | 27 | 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /Entities/Concrete/Role.cs: -------------------------------------------------------------------------------- 1 | using Core.Entities; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Text; 6 | using System.Threading.Tasks; 7 | 8 | namespace Entities.Concrete 9 | { 10 | public class Role : IEntity 11 | { 12 | public int RoleId { get; set; } 13 | public string RoleName { get; set; } 14 | 15 | public virtual List Users { get; set; } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /Entities/Concrete/User.cs: -------------------------------------------------------------------------------- 1 | using Core.Entities; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Text; 6 | using System.Threading.Tasks; 7 | 8 | namespace Entities.Concrete 9 | { 10 | public class User:IEntity 11 | { 12 | public int UserId { get; set; } 13 | public string FirstName { get; set; } 14 | public string LastName { get; set; } 15 | public string UserName { get; set; } 16 | public string Email { get; set; } 17 | public string Password { get; set; } 18 | public int RoleId { get; set; } 19 | 20 | public virtual Role Role { get; set; } 21 | 22 | 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /Entities/Entities.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net6.0 5 | enable 6 | enable 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /Entities/bin/Debug/net6.0/Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/Entities/bin/Debug/net6.0/Core.dll -------------------------------------------------------------------------------- /Entities/bin/Debug/net6.0/Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/Entities/bin/Debug/net6.0/Core.pdb -------------------------------------------------------------------------------- /Entities/bin/Debug/net6.0/Entities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/Entities/bin/Debug/net6.0/Entities.dll -------------------------------------------------------------------------------- /Entities/bin/Debug/net6.0/Entities.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/Entities/bin/Debug/net6.0/Entities.pdb -------------------------------------------------------------------------------- /Entities/bin/Debug/net6.0/ref/Entities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/Entities/bin/Debug/net6.0/ref/Entities.dll -------------------------------------------------------------------------------- /Entities/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /Entities/obj/Debug/net6.0/Entities.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("Entities")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("Entities")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("Entities")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /Entities/obj/Debug/net6.0/Entities.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 6efefbace1bafaab5616b3f0e8985359045640cb 2 | -------------------------------------------------------------------------------- /Entities/obj/Debug/net6.0/Entities.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.TargetFramework = net6.0 3 | build_property.TargetPlatformMinVersion = 4 | build_property.UsingMicrosoftNETSdkWeb = 5 | build_property.ProjectTypeGuids = 6 | build_property.InvariantGlobalization = 7 | build_property.PlatformNeutralAssembly = 8 | build_property._SupportedPlatformList = Linux,macOS,Windows 9 | build_property.RootNamespace = Entities 10 | build_property.ProjectDir = C:\Users\cosku\Source\Repos\projectMVC\Entities\ 11 | -------------------------------------------------------------------------------- /Entities/obj/Debug/net6.0/Entities.GlobalUsings.g.cs: -------------------------------------------------------------------------------- 1 | // 2 | global using global::System; 3 | global using global::System.Collections.Generic; 4 | global using global::System.IO; 5 | global using global::System.Linq; 6 | global using global::System.Net.Http; 7 | global using global::System.Threading; 8 | global using global::System.Threading.Tasks; 9 | -------------------------------------------------------------------------------- /Entities/obj/Debug/net6.0/Entities.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/Entities/obj/Debug/net6.0/Entities.assets.cache -------------------------------------------------------------------------------- /Entities/obj/Debug/net6.0/Entities.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/Entities/obj/Debug/net6.0/Entities.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Entities/obj/Debug/net6.0/Entities.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/Entities/obj/Debug/net6.0/Entities.csproj.CopyComplete -------------------------------------------------------------------------------- /Entities/obj/Debug/net6.0/Entities.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 366f960ec43908f18cdb0bf94a855f2cb7ffb437 2 | -------------------------------------------------------------------------------- /Entities/obj/Debug/net6.0/Entities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/Entities/obj/Debug/net6.0/Entities.dll -------------------------------------------------------------------------------- /Entities/obj/Debug/net6.0/Entities.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/Entities/obj/Debug/net6.0/Entities.pdb -------------------------------------------------------------------------------- /Entities/obj/Debug/net6.0/ref/Entities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/Entities/obj/Debug/net6.0/ref/Entities.dll -------------------------------------------------------------------------------- /Entities/obj/Entities.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\cosku\.nuget\packages\ 9 | PackageReference 10 | 6.0.1 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /Entities/obj/Entities.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /Entities/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /Entities/obj/Release/net6.0/Entities.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("Entities")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("Entities")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("Entities")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /Entities/obj/Release/net6.0/Entities.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | daf4bb6c388438db313cca22a3163c2ef9712b8e 2 | -------------------------------------------------------------------------------- /Entities/obj/Release/net6.0/Entities.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.TargetFramework = net6.0 3 | build_property.TargetPlatformMinVersion = 4 | build_property.UsingMicrosoftNETSdkWeb = 5 | build_property.ProjectTypeGuids = 6 | build_property.InvariantGlobalization = 7 | build_property.PlatformNeutralAssembly = 8 | build_property._SupportedPlatformList = Linux,macOS,Windows 9 | build_property.RootNamespace = Entities 10 | build_property.ProjectDir = C:\Users\cosku\Source\Repos\projectMVC\Entities\ 11 | -------------------------------------------------------------------------------- /Entities/obj/Release/net6.0/Entities.GlobalUsings.g.cs: -------------------------------------------------------------------------------- 1 | // 2 | global using global::System; 3 | global using global::System.Collections.Generic; 4 | global using global::System.IO; 5 | global using global::System.Linq; 6 | global using global::System.Net.Http; 7 | global using global::System.Threading; 8 | global using global::System.Threading.Tasks; 9 | -------------------------------------------------------------------------------- /Entities/obj/Release/net6.0/Entities.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/Entities/obj/Release/net6.0/Entities.assets.cache -------------------------------------------------------------------------------- /MvcWebUI/Controllers/HomeController.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Mvc; 2 | using MvcWebUI.Models; 3 | using System.Diagnostics; 4 | 5 | namespace MvcWebUI.Controllers 6 | { 7 | public class HomeController : Controller 8 | { 9 | private readonly ILogger _logger; 10 | 11 | public HomeController(ILogger logger) 12 | { 13 | _logger = logger; 14 | } 15 | 16 | public IActionResult Index() 17 | { 18 | return View(); 19 | } 20 | 21 | public IActionResult Privacy() 22 | { 23 | return View(); 24 | } 25 | 26 | [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)] 27 | public IActionResult Error() 28 | { 29 | return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier }); 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /MvcWebUI/Controllers/LandController.cs: -------------------------------------------------------------------------------- 1 | using Business.Abstract; 2 | using Entities.Concrete; 3 | using Microsoft.AspNetCore.Mvc; 4 | using MvcWebUI.Models; 5 | 6 | namespace MvcWebUI.Controllers 7 | { 8 | public class LandController : Controller 9 | { 10 | ILandService _landService; 11 | IPropertyService _propertyService; 12 | 13 | public LandController(ILandService landService, IPropertyService propertyService) 14 | { 15 | _landService = landService; 16 | _propertyService = propertyService; 17 | } 18 | public IActionResult Index() 19 | { 20 | return View(_landService.GetAll()); 21 | } 22 | [HttpGet] 23 | public IActionResult Add(int id) 24 | { 25 | var model = new LandViewModel 26 | { 27 | Land = _landService.GetById(id), 28 | Property = _propertyService.GetById(id) 29 | }; 30 | return View("add",model); 31 | } 32 | 33 | [HttpPost] 34 | public IActionResult Add(Land land) 35 | { 36 | _landService.Add(land); 37 | return RedirectToAction("index"); 38 | } 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /MvcWebUI/Controllers/PropertyController.cs: -------------------------------------------------------------------------------- 1 | using Business.Abstract; 2 | using Microsoft.AspNetCore.Mvc; 3 | 4 | namespace MvcWebUI.Controllers 5 | { 6 | public class PropertyController : Controller 7 | { 8 | IPropertyService _propertyService; 9 | public PropertyController(IPropertyService propertyService) 10 | { 11 | _propertyService = propertyService; 12 | } 13 | public IActionResult Index() 14 | { 15 | return View(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /MvcWebUI/Controllers/RoleController.cs: -------------------------------------------------------------------------------- 1 | using Business.Abstract; 2 | using Entities.Concrete; 3 | using Microsoft.AspNetCore.Mvc; 4 | using MvcWebUI.Models; 5 | 6 | namespace MvcWebUI.Controllers 7 | { 8 | public class RoleController : Controller 9 | { 10 | IRoleService _roleService; 11 | //IUserService _userService; 12 | public RoleController(IRoleService roleService/*, IUserService userService*/) 13 | { 14 | _roleService = roleService; 15 | // _userService = userService; 16 | } 17 | public IActionResult Index() 18 | { 19 | return View(_roleService.GetAll()); 20 | } 21 | 22 | [HttpGet] 23 | public IActionResult Add() 24 | { 25 | return View(); 26 | } 27 | 28 | [HttpPost] 29 | public IActionResult Add(Role role) 30 | { 31 | _roleService.Add(role); 32 | return RedirectToAction("index"); 33 | } 34 | 35 | [HttpGet] 36 | public IActionResult Update(int id) 37 | { 38 | var model = _roleService.GetById(id); 39 | return View("Update",model); 40 | } 41 | 42 | [HttpPost] 43 | public IActionResult Update(Role role) 44 | { 45 | _roleService.Update(role); 46 | return RedirectToAction("index"); 47 | } 48 | 49 | public IActionResult Delete(Role role) 50 | { 51 | var model = _roleService.GetById(role.RoleId); 52 | _roleService.Delete(model); 53 | return RedirectToAction("index",model); 54 | } 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /MvcWebUI/Controllers/UserController.cs: -------------------------------------------------------------------------------- 1 | using Business.Abstract; 2 | using Entities.Concrete; 3 | using Microsoft.AspNetCore.Mvc; 4 | using MvcWebUI.Models; 5 | 6 | namespace MvcWebUI.Controllers 7 | { 8 | public class UserController : Controller 9 | { 10 | IUserService _userService; 11 | IRoleService _roleService; 12 | public UserController(IUserService userService, IRoleService roleService) 13 | { 14 | _userService = userService; 15 | _roleService = roleService; 16 | } 17 | public IActionResult Index() 18 | { 19 | return View(_userService.GetAll()); 20 | } 21 | [HttpGet] 22 | public IActionResult Add() 23 | { 24 | var model = new UserViewModel() 25 | { 26 | Roles = _roleService.GetAll() 27 | }; 28 | return View("add",model); 29 | } 30 | [HttpPost] 31 | public IActionResult Add(User user) 32 | { 33 | _userService.Add(user); 34 | return RedirectToAction("index"); 35 | } 36 | 37 | [HttpGet] 38 | public IActionResult Update(int id) 39 | { 40 | var user = _userService.GetById(id); 41 | var model = new UserViewModel() 42 | { 43 | Roles = _roleService.GetAll(), 44 | User = user 45 | }; 46 | return View("update",model); 47 | } 48 | 49 | [HttpPost] 50 | public IActionResult Update(User user) 51 | { 52 | _userService.Update(user); 53 | return RedirectToAction("index"); 54 | } 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /MvcWebUI/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- 1 | namespace MvcWebUI.Models 2 | { 3 | public class ErrorViewModel 4 | { 5 | public string? RequestId { get; set; } 6 | 7 | public bool ShowRequestId => !string.IsNullOrEmpty(RequestId); 8 | } 9 | } -------------------------------------------------------------------------------- /MvcWebUI/Models/LandViewModel.cs: -------------------------------------------------------------------------------- 1 | using Entities.Concrete; 2 | 3 | namespace MvcWebUI.Models 4 | { 5 | public class LandViewModel 6 | { 7 | public Land Land { get; set; } 8 | public Property Property { get; set; } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /MvcWebUI/Models/UserViewModel.cs: -------------------------------------------------------------------------------- 1 | using Entities.Concrete; 2 | 3 | namespace MvcWebUI.Models 4 | { 5 | public class UserViewModel 6 | { 7 | public IEnumerable Roles { get; set; } 8 | public User User { get; set; } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /MvcWebUI/MvcWebUI.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net6.0 5 | enable 6 | enable 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /MvcWebUI/MvcWebUI.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | MvcControllerEmptyScaffolder 5 | root/Common/MVC/Controller 6 | IIS Express 7 | RazorViewScaffolder 8 | root/Common/MVC/View 9 | 650 10 | True 11 | False 12 | False 13 | ~/Views/Shared/_Layout.cshtml 14 | 15 | 16 | ProjectDebugger 17 | 18 | -------------------------------------------------------------------------------- /MvcWebUI/Program.cs: -------------------------------------------------------------------------------- 1 | using Autofac; 2 | using Autofac.Extensions.DependencyInjection; 3 | using Business.DependencyResolvers.Autofac; 4 | 5 | var builder = WebApplication.CreateBuilder(args); 6 | 7 | builder.Host.UseServiceProviderFactory(new AutofacServiceProviderFactory()); 8 | 9 | builder.Host.ConfigureContainer(builder => 10 | { 11 | builder.RegisterModule(new AutofacBusinessModule()); 12 | }); 13 | // Add services to the container. 14 | builder.Services.AddControllersWithViews(); 15 | 16 | 17 | var app = builder.Build(); 18 | 19 | // Configure the HTTP request pipeline. 20 | if (!app.Environment.IsDevelopment()) 21 | { 22 | app.UseExceptionHandler("/Home/Error"); 23 | // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts. 24 | app.UseHsts(); 25 | } 26 | 27 | app.UseHttpsRedirection(); 28 | app.UseStaticFiles(); 29 | 30 | app.UseRouting(); 31 | 32 | app.UseAuthorization(); 33 | 34 | app.MapControllerRoute( 35 | name: "default", 36 | pattern: "{controller=Home}/{action=Index}/{id?}"); 37 | 38 | app.Run(); 39 | -------------------------------------------------------------------------------- /MvcWebUI/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "iisSettings": { 3 | "windowsAuthentication": false, 4 | "anonymousAuthentication": true, 5 | "iisExpress": { 6 | "applicationUrl": "http://localhost:54025", 7 | "sslPort": 44381 8 | } 9 | }, 10 | "profiles": { 11 | "MvcWebUI": { 12 | "commandName": "Project", 13 | "dotnetRunMessages": true, 14 | "launchBrowser": true, 15 | "applicationUrl": "https://localhost:7246;http://localhost:5246", 16 | "environmentVariables": { 17 | "ASPNETCORE_ENVIRONMENT": "Development" 18 | } 19 | }, 20 | "IIS Express": { 21 | "commandName": "IISExpress", 22 | "launchBrowser": true, 23 | "environmentVariables": { 24 | "ASPNETCORE_ENVIRONMENT": "Development" 25 | } 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /MvcWebUI/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 |  2 | @{ 3 | ViewData["Title"] = "Home Page"; 4 | } 5 | 6 |
7 |

Welcome

8 |

Learn about building Web apps with ASP.NET Core.

9 |
-------------------------------------------------------------------------------- /MvcWebUI/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- 1 |  2 | @{ 3 | ViewData["Title"] = "Privacy Policy"; 4 | } 5 |

@ViewData["Title"]

6 | 7 |

Use this page to detail your site's privacy policy.

-------------------------------------------------------------------------------- /MvcWebUI/Views/Land/Index.cshtml: -------------------------------------------------------------------------------- 1 | @model IEnumerable 2 | @{ 3 | ViewData["Title"] = "Index"; 4 | Layout = "~/Views/Shared/_Layout.cshtml"; 5 | } 6 | 7 |

Arazi

8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | @foreach (var item in Model) 28 | { 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | } 47 |
IdFiyatResimVideoİlan Tarihiİlan Noİlan DurumuMetrekareEmsalTemplateTapu DurumuArazi TipiTakasGüncelleSil
@item.LandId@item.Property.Price@item.Property.Picture@item.Property.Video@item.Property.ListingDate@item.Property.AdvertNo@item.Property.AdvertState@item.Property.Square@item.Precedent@item.Template@item.DeedStatus@item.LandType@item.ExchangeSatusGüncelleSil
48 |
49 | Arazi Ekle 50 | 51 | 52 | -------------------------------------------------------------------------------- /MvcWebUI/Views/Role/Add.cshtml: -------------------------------------------------------------------------------- 1 | @model Entities.Concrete.Role 2 | @{ 3 | ViewData["Title"] = "Add"; 4 | Layout = "~/Views/Shared/_Layout.cshtml"; 5 | } 6 | 7 |

Rol Ekleme

8 | @using (Html.BeginForm("Add","Role",FormMethod.Post)) 9 | { 10 | 11 |
12 | @Html.LabelFor(m => m.RoleName) 13 | @Html.TextBoxFor(m=>m.RoleName, new {@class="form-control"}) 14 |
15 | 16 |
17 | 18 | 19 | } 20 | 21 | 22 | -------------------------------------------------------------------------------- /MvcWebUI/Views/Role/Index.cshtml: -------------------------------------------------------------------------------- 1 | @model IEnumerable 2 | @{ 3 | ViewData["Title"] = "Index"; 4 | Layout = "~/Views/Shared/_Layout.cshtml"; 5 | } 6 | 7 |

Rol Listesi

8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | @foreach (var item in Model) 17 | { 18 | 19 | 20 | 21 | 22 | 23 | 24 | } 25 |
IdRolGüncelleSil
@item.RoleId@item.RoleNameGüncelleSil
26 |
27 | Yeni Rol 28 | 29 | -------------------------------------------------------------------------------- /MvcWebUI/Views/Role/Update.cshtml: -------------------------------------------------------------------------------- 1 | @model Entities.Concrete.Role 2 | @{ 3 | ViewData["Title"] = "Update"; 4 | Layout = "~/Views/Shared/_Layout.cshtml"; 5 | } 6 | 7 |

Güncelle

8 | @using (Html.BeginForm("Update","Role",FormMethod.Post)) 9 | { 10 |
11 | @Html.LabelFor(m => m.RoleName) 12 | @Html.TextBoxFor(m=>m.RoleName, new {@class="form-control"}) 13 |
14 |
15 | 16 | } 17 | -------------------------------------------------------------------------------- /MvcWebUI/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 | @model ErrorViewModel 2 | @{ 3 | ViewData["Title"] = "Error"; 4 | } 5 | 6 |

Error.

7 |

An error occurred while processing your request.

8 | 9 | @if (Model?.ShowRequestId ?? false) 10 | { 11 |

12 | Request ID: @Model?.RequestId 13 |

14 | } 15 | 16 |

Development Mode

17 |

18 | Swapping to Development environment will display more detailed information about the error that occurred. 19 |

20 |

21 | The Development environment shouldn't be enabled for deployed applications. 22 | It can result in displaying sensitive information from exceptions to end users. 23 | For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development 24 | and restarting the app. 25 |

26 | -------------------------------------------------------------------------------- /MvcWebUI/Views/Shared/_Footer.cshtml: -------------------------------------------------------------------------------- 1 | 
2 |

Copyright © Your Website 2021

3 |
4 | -------------------------------------------------------------------------------- /MvcWebUI/Views/Shared/_Header.cshtml: -------------------------------------------------------------------------------- 1 | 
2 |

3 | A Free Bootstrap Business Theme 4 | Business Casual 5 |

6 |
7 | -------------------------------------------------------------------------------- /MvcWebUI/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /MvcWebUI/Views/User/Add.cshtml: -------------------------------------------------------------------------------- 1 | @model MvcWebUI.Models.UserViewModel 2 | @{ 3 | ViewData["Title"] = "Add"; 4 | Layout = "~/Views/Shared/_Layout.cshtml"; 5 | } 6 | 7 |

Kullanıcı Ekleme

8 | @using (Html.BeginForm("Add","User",FormMethod.Post)) 9 | { 10 | 11 |
12 | @Html.LabelFor(m => m.User.FirstName) 13 | @Html.TextBoxFor(m=>m.User.FirstName, new {@class="form-control"}) 14 |
15 |
16 | @Html.LabelFor(m => m.User.LastName) 17 | @Html.TextBoxFor(m=>m.User.LastName, new {@class="form-control"}) 18 |
19 |
20 | @Html.LabelFor(m => m.User.UserName) 21 | @Html.TextBoxFor(m=>m.User.UserName, new {@class="form-control"}) 22 |
23 |
24 | @Html.LabelFor(m => m.User.Email) 25 | @Html.TextBoxFor(m=>m.User.Email, new {@class="form-control"}) 26 |
27 |
28 | @Html.LabelFor(m => m.User.Password) 29 | @Html.TextBoxFor(m=>m.User.Password, new {@class="form-control"}) 30 |
31 |
32 | @Html.LabelFor(m => m.User.RoleId) 33 | @Html.DropDownListFor(m=>m.User.RoleId, new SelectList(Model.Roles,"RoleId","RoleName"), new {@class="form-control"}) 34 |
35 | 36 |
37 | 38 | 39 | } 40 | 41 | -------------------------------------------------------------------------------- /MvcWebUI/Views/User/Index.cshtml: -------------------------------------------------------------------------------- 1 | @model IEnumerable 2 | @{ 3 | ViewData["Title"] = "Index"; 4 | Layout = "~/Views/Shared/_Layout.cshtml"; 5 | } 6 | 7 |

Kullanıcı Listesi

8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | @foreach (var item in Model) 22 | { 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | } 35 |
IdAdSoyadKullanıcı AdıEmailŞifreRolGüncelleSil
@item.UserId@item.FirstName@item.LastName@item.UserName@item.Email@item.Password@item.Role.RoleNameGüncelleSil
36 |
37 | Yeni Kullanıcı 38 | 39 | 40 | -------------------------------------------------------------------------------- /MvcWebUI/Views/User/Update.cshtml: -------------------------------------------------------------------------------- 1 | @model MvcWebUI.Models.UserViewModel 2 | @{ 3 | ViewData["Title"] = "Update"; 4 | Layout = "~/Views/Shared/_Layout.cshtml"; 5 | } 6 | 7 |

Update

8 | @using (Html.BeginForm("Update","User",FormMethod.Post)) 9 | { 10 | @Html.HiddenFor(m=>m.User.UserId) 11 |
12 | @Html.LabelFor(m => m.User.FirstName) 13 | @Html.TextBoxFor(m=>m.User.FirstName, new {@class="form-control"}) 14 |
15 |
16 | @Html.LabelFor(m => m.User.LastName) 17 | @Html.TextBoxFor(m=>m.User.LastName, new {@class="form-control"}) 18 |
19 |
20 | @Html.LabelFor(m => m.User.UserName) 21 | @Html.TextBoxFor(m=>m.User.UserName, new {@class="form-control"}) 22 |
23 |
24 | @Html.LabelFor(m => m.User.Email) 25 | @Html.TextBoxFor(m=>m.User.Email, new {@class="form-control"}) 26 |
27 |
28 | @Html.LabelFor(m => m.User.Password) 29 | @Html.TextBoxFor(m=>m.User.Password, new {@class="form-control"}) 30 |
31 |
32 | @Html.LabelFor(m => m.User.RoleId) 33 | @Html.DropDownListFor(m=>m.User.RoleId, new SelectList(Model.Roles,"RoleId","RoleName"), new {@class="form-control"}) 34 |
35 | 36 |
37 | 38 | 39 | } 40 | -------------------------------------------------------------------------------- /MvcWebUI/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using MvcWebUI 2 | @using MvcWebUI.Models 3 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 4 | -------------------------------------------------------------------------------- /MvcWebUI/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /MvcWebUI/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /MvcWebUI/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | }, 8 | "AllowedHosts": "*" 9 | } 10 | -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Autofac.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Autofac.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Autofac.Extras.DynamicProxy.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Autofac.Extras.DynamicProxy.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Autofac.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Autofac.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Business.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Business.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Business.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Business.pdb -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Castle.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Castle.Core.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Core.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Core.pdb -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/DataAccess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/DataAccess.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/DataAccess.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/DataAccess.pdb -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Entities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Entities.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Entities.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Entities.pdb -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Humanizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Humanizer.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/MessagePack.Annotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/MessagePack.Annotations.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/MessagePack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/MessagePack.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Microsoft.AspNetCore.Razor.Language.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Microsoft.AspNetCore.Razor.Language.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Microsoft.Build.Locator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Microsoft.Build.Locator.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.Features.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.Features.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Microsoft.CodeAnalysis.Features.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Microsoft.CodeAnalysis.Features.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Microsoft.CodeAnalysis.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Microsoft.CodeAnalysis.Razor.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Microsoft.CodeAnalysis.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Microsoft.CodeAnalysis.Scripting.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Microsoft.CodeAnalysis.VisualBasic.Features.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Microsoft.CodeAnalysis.VisualBasic.Features.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Microsoft.CodeAnalysis.VisualBasic.Workspaces.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Microsoft.CodeAnalysis.VisualBasic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Microsoft.CodeAnalysis.VisualBasic.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Microsoft.CodeAnalysis.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Microsoft.CodeAnalysis.Workspaces.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Microsoft.DiaSymReader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Microsoft.DiaSymReader.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Microsoft.DotNet.Scaffolding.Shared.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Microsoft.DotNet.Scaffolding.Shared.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Relational.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.Relational.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Microsoft.VisualStudio.Debugger.Contracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Microsoft.VisualStudio.Debugger.Contracts.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Microsoft.VisualStudio.Web.CodeGeneration.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/MvcWebUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/MvcWebUI.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/MvcWebUI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/MvcWebUI.exe -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/MvcWebUI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/MvcWebUI.pdb -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/MvcWebUI.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net6.0", 4 | "frameworks": [ 5 | { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "6.0.0" 8 | }, 9 | { 10 | "name": "Microsoft.AspNetCore.App", 11 | "version": "6.0.0" 12 | } 13 | ], 14 | "configProperties": { 15 | "System.GC.Server": true, 16 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false 17 | } 18 | } 19 | } -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/NuGet.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/NuGet.Common.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/NuGet.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/NuGet.Configuration.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/NuGet.DependencyResolver.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/NuGet.DependencyResolver.Core.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/NuGet.Frameworks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/NuGet.Frameworks.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/NuGet.LibraryModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/NuGet.LibraryModel.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/NuGet.Packaging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/NuGet.Packaging.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/NuGet.ProjectModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/NuGet.ProjectModel.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/NuGet.Protocol.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/NuGet.Protocol.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/NuGet.Versioning.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/NuGet.Versioning.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/System.Composition.AttributedModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/System.Composition.AttributedModel.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/System.Composition.Convention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/System.Composition.Convention.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/System.Composition.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/System.Composition.Hosting.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/System.Composition.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/System.Composition.Runtime.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/System.Composition.TypedParts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/System.Composition.TypedParts.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/System.Security.Permissions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/System.Security.Permissions.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/System.Windows.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/System.Windows.Extensions.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | }, 8 | "AllowedHosts": "*" 9 | } 10 | -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/dotnet-aspnet-codegenerator-design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/dotnet-aspnet-codegenerator-design.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/ref/MvcWebUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/ref/MvcWebUI.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/runtimes/win-arm/lib/net6.0/dotnet-aspnet-codegenerator-design.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/runtimes/win-arm/lib/net6.0/dotnet-aspnet-codegenerator-design.exe -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/runtimes/win-arm64/lib/net6.0/dotnet-aspnet-codegenerator-design.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/runtimes/win-arm64/lib/net6.0/dotnet-aspnet-codegenerator-design.exe -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Features.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.Workspaces.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.VisualBasic.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /MvcWebUI/obj/Debug/net5.0/MvcWebUI.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/obj/Debug/net5.0/MvcWebUI.assets.cache -------------------------------------------------------------------------------- /MvcWebUI/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /MvcWebUI/obj/Debug/net6.0/MvcWebUI.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("MvcWebUI")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("MvcWebUI")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("MvcWebUI")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /MvcWebUI/obj/Debug/net6.0/MvcWebUI.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 2a6f2b44b2e1d639dead1bbcb453aea821004207 2 | -------------------------------------------------------------------------------- /MvcWebUI/obj/Debug/net6.0/MvcWebUI.GlobalUsings.g.cs: -------------------------------------------------------------------------------- 1 | // 2 | global using global::Microsoft.AspNetCore.Builder; 3 | global using global::Microsoft.AspNetCore.Hosting; 4 | global using global::Microsoft.AspNetCore.Http; 5 | global using global::Microsoft.AspNetCore.Routing; 6 | global using global::Microsoft.Extensions.Configuration; 7 | global using global::Microsoft.Extensions.DependencyInjection; 8 | global using global::Microsoft.Extensions.Hosting; 9 | global using global::Microsoft.Extensions.Logging; 10 | global using global::System; 11 | global using global::System.Collections.Generic; 12 | global using global::System.IO; 13 | global using global::System.Linq; 14 | global using global::System.Net.Http; 15 | global using global::System.Net.Http.Json; 16 | global using global::System.Threading; 17 | global using global::System.Threading.Tasks; 18 | -------------------------------------------------------------------------------- /MvcWebUI/obj/Debug/net6.0/MvcWebUI.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/obj/Debug/net6.0/MvcWebUI.MvcApplicationPartsAssemblyInfo.cache -------------------------------------------------------------------------------- /MvcWebUI/obj/Debug/net6.0/MvcWebUI.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 5860763757f4f08c7ebdea1b3a94a18109f17861 2 | -------------------------------------------------------------------------------- /MvcWebUI/obj/Debug/net6.0/MvcWebUI.RazorAssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ProvideApplicationPartFactoryAttribute("Microsoft.AspNetCore.Mvc.ApplicationParts.ConsolidatedAssemblyApplicationPartFact" + 15 | "ory, Microsoft.AspNetCore.Mvc.Razor")] 16 | 17 | // Generated by the MSBuild WriteCodeFragment class. 18 | 19 | -------------------------------------------------------------------------------- /MvcWebUI/obj/Debug/net6.0/MvcWebUI.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/obj/Debug/net6.0/MvcWebUI.assets.cache -------------------------------------------------------------------------------- /MvcWebUI/obj/Debug/net6.0/MvcWebUI.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/obj/Debug/net6.0/MvcWebUI.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /MvcWebUI/obj/Debug/net6.0/MvcWebUI.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/obj/Debug/net6.0/MvcWebUI.csproj.CopyComplete -------------------------------------------------------------------------------- /MvcWebUI/obj/Debug/net6.0/MvcWebUI.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 2136339216d690748d785bd7752fc75f3d62cb63 2 | -------------------------------------------------------------------------------- /MvcWebUI/obj/Debug/net6.0/MvcWebUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/obj/Debug/net6.0/MvcWebUI.dll -------------------------------------------------------------------------------- /MvcWebUI/obj/Debug/net6.0/MvcWebUI.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 148d93912f770013dccd12b2bc97c1aa2a0be7f8 2 | -------------------------------------------------------------------------------- /MvcWebUI/obj/Debug/net6.0/MvcWebUI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/obj/Debug/net6.0/MvcWebUI.pdb -------------------------------------------------------------------------------- /MvcWebUI/obj/Debug/net6.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/obj/Debug/net6.0/apphost.exe -------------------------------------------------------------------------------- /MvcWebUI/obj/Debug/net6.0/ref/MvcWebUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/obj/Debug/net6.0/ref/MvcWebUI.dll -------------------------------------------------------------------------------- /MvcWebUI/obj/Debug/net6.0/scopedcss/bundle/MvcWebUI.styles.css: -------------------------------------------------------------------------------- 1 | /* _content/MvcWebUI/Views/Shared/_Layout.cshtml.rz.scp.css */ 2 | /* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification 3 | for details on configuring this project to bundle and minify static web assets. */ 4 | 5 | a.navbar-brand[b-hzw0qhf29z] { 6 | white-space: normal; 7 | text-align: center; 8 | word-break: break-all; 9 | } 10 | 11 | a[b-hzw0qhf29z] { 12 | color: #0077cc; 13 | } 14 | 15 | .btn-primary[b-hzw0qhf29z] { 16 | color: #fff; 17 | background-color: #1b6ec2; 18 | border-color: #1861ac; 19 | } 20 | 21 | .nav-pills .nav-link.active[b-hzw0qhf29z], .nav-pills .show > .nav-link[b-hzw0qhf29z] { 22 | color: #fff; 23 | background-color: #1b6ec2; 24 | border-color: #1861ac; 25 | } 26 | 27 | .border-top[b-hzw0qhf29z] { 28 | border-top: 1px solid #e5e5e5; 29 | } 30 | .border-bottom[b-hzw0qhf29z] { 31 | border-bottom: 1px solid #e5e5e5; 32 | } 33 | 34 | .box-shadow[b-hzw0qhf29z] { 35 | box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); 36 | } 37 | 38 | button.accept-policy[b-hzw0qhf29z] { 39 | font-size: 1rem; 40 | line-height: inherit; 41 | } 42 | 43 | .footer[b-hzw0qhf29z] { 44 | position: absolute; 45 | bottom: 0; 46 | width: 100%; 47 | white-space: nowrap; 48 | line-height: 60px; 49 | } 50 | -------------------------------------------------------------------------------- /MvcWebUI/obj/Debug/netcoreapp3.1/MvcWebUI.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/obj/Debug/netcoreapp3.1/MvcWebUI.assets.cache -------------------------------------------------------------------------------- /MvcWebUI/obj/MvcWebUI.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /MvcWebUI/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] 5 | -------------------------------------------------------------------------------- /MvcWebUI/obj/Release/net6.0/MvcWebUI.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("MvcWebUI")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("MvcWebUI")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("MvcWebUI")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /MvcWebUI/obj/Release/net6.0/MvcWebUI.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 69959bd3d0742e63cafe5b38f9f1ea5dad54661c 2 | -------------------------------------------------------------------------------- /MvcWebUI/obj/Release/net6.0/MvcWebUI.GlobalUsings.g.cs: -------------------------------------------------------------------------------- 1 | // 2 | global using global::Microsoft.AspNetCore.Builder; 3 | global using global::Microsoft.AspNetCore.Hosting; 4 | global using global::Microsoft.AspNetCore.Http; 5 | global using global::Microsoft.AspNetCore.Routing; 6 | global using global::Microsoft.Extensions.Configuration; 7 | global using global::Microsoft.Extensions.DependencyInjection; 8 | global using global::Microsoft.Extensions.Hosting; 9 | global using global::Microsoft.Extensions.Logging; 10 | global using global::System; 11 | global using global::System.Collections.Generic; 12 | global using global::System.IO; 13 | global using global::System.Linq; 14 | global using global::System.Net.Http; 15 | global using global::System.Net.Http.Json; 16 | global using global::System.Threading; 17 | global using global::System.Threading.Tasks; 18 | -------------------------------------------------------------------------------- /MvcWebUI/obj/Release/net6.0/MvcWebUI.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 5860763757f4f08c7ebdea1b3a94a18109f17861 2 | -------------------------------------------------------------------------------- /MvcWebUI/obj/Release/net6.0/MvcWebUI.RazorAssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ProvideApplicationPartFactoryAttribute("Microsoft.AspNetCore.Mvc.ApplicationParts.ConsolidatedAssemblyApplicationPartFact" + 15 | "ory, Microsoft.AspNetCore.Mvc.Razor")] 16 | 17 | // Generated by the MSBuild WriteCodeFragment class. 18 | 19 | -------------------------------------------------------------------------------- /MvcWebUI/obj/Release/net6.0/MvcWebUI.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/obj/Release/net6.0/MvcWebUI.assets.cache -------------------------------------------------------------------------------- /MvcWebUI/wwwroot/css/site.css: -------------------------------------------------------------------------------- 1 | html { 2 | font-size: 14px; 3 | } 4 | 5 | @media (min-width: 768px) { 6 | html { 7 | font-size: 16px; 8 | } 9 | } 10 | 11 | html { 12 | position: relative; 13 | min-height: 100%; 14 | } 15 | 16 | body { 17 | margin-bottom: 60px; 18 | } -------------------------------------------------------------------------------- /MvcWebUI/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/wwwroot/favicon.ico -------------------------------------------------------------------------------- /MvcWebUI/wwwroot/images/Building.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/wwwroot/images/Building.jpg -------------------------------------------------------------------------------- /MvcWebUI/wwwroot/images/Building2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/wwwroot/images/Building2.jpg -------------------------------------------------------------------------------- /MvcWebUI/wwwroot/images/Home.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/wwwroot/images/Home.jpg -------------------------------------------------------------------------------- /MvcWebUI/wwwroot/images/Land.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/wwwroot/images/Land.jpg -------------------------------------------------------------------------------- /MvcWebUI/wwwroot/images/res.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoskunAltinsoy/projectMVC/830bfea489d7db182afb2dbf68e48eb9f60418ed/MvcWebUI/wwwroot/images/res.jpg -------------------------------------------------------------------------------- /MvcWebUI/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification 2 | // for details on configuring this project to bundle and minify static web assets. 3 | 4 | // Write your JavaScript code. 5 | -------------------------------------------------------------------------------- /MvcWebUI/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2011-2021 Twitter, Inc. 4 | Copyright (c) 2011-2021 The Bootstrap Authors 5 | 6 | Permission is hereby granted, free of charge, to any person obtaining a copy 7 | of this software and associated documentation files (the "Software"), to deal 8 | in the Software without restriction, including without limitation the rights 9 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | copies of the Software, and to permit persons to whom the Software is 11 | furnished to do so, subject to the following conditions: 12 | 13 | The above copyright notice and this permission notice shall be included in 14 | all copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 22 | THE SOFTWARE. 23 | -------------------------------------------------------------------------------- /MvcWebUI/wwwroot/lib/bootstrap/dist/css/Style.css: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /MvcWebUI/wwwroot/lib/bootstrap/dist/js/scripts.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Start Bootstrap - Business Casual v7.0.6 (https://startbootstrap.com/theme/business-casual) 3 | * Copyright 2013-2021 Start Bootstrap 4 | * Licensed under MIT (https://github.com/StartBootstrap/startbootstrap-business-casual/blob/master/LICENSE) 5 | */ 6 | // Highlights current date on contact page 7 | window.addEventListener('DOMContentLoaded', event => { 8 | const listHoursArray = document.body.querySelectorAll('.list-hours li'); 9 | listHoursArray[new Date().getDay()].classList.add(('today')); 10 | }) 11 | -------------------------------------------------------------------------------- /MvcWebUI/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) .NET Foundation. All rights reserved. 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); you may not use 4 | these files except in compliance with the License. You may obtain a copy of the 5 | License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software distributed 10 | under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR 11 | CONDITIONS OF ANY KIND, either express or implied. See the License for the 12 | specific language governing permissions and limitations under the License. 13 | -------------------------------------------------------------------------------- /MvcWebUI/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | ===================== 3 | 4 | Copyright Jörn Zaefferer 5 | 6 | Permission is hereby granted, free of charge, to any person obtaining a copy 7 | of this software and associated documentation files (the "Software"), to deal 8 | in the Software without restriction, including without limitation the rights 9 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | copies of the Software, and to permit persons to whom the Software is 11 | furnished to do so, subject to the following conditions: 12 | 13 | The above copyright notice and this permission notice shall be included in 14 | all copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 22 | THE SOFTWARE. 23 | -------------------------------------------------------------------------------- /MvcWebUI/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright JS Foundation and other contributors, https://js.foundation/ 2 | 3 | This software consists of voluntary contributions made by many 4 | individuals. For exact contribution history, see the revision history 5 | available at https://github.com/jquery/jquery 6 | 7 | The following license applies to all parts of this software except as 8 | documented below: 9 | 10 | ==== 11 | 12 | Permission is hereby granted, free of charge, to any person obtaining 13 | a copy of this software and associated documentation files (the 14 | "Software"), to deal in the Software without restriction, including 15 | without limitation the rights to use, copy, modify, merge, publish, 16 | distribute, sublicense, and/or sell copies of the Software, and to 17 | permit persons to whom the Software is furnished to do so, subject to 18 | the following conditions: 19 | 20 | The above copyright notice and this permission notice shall be 21 | included in all copies or substantial portions of the Software. 22 | 23 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 24 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 25 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 26 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 27 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 28 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 29 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 30 | 31 | ==== 32 | 33 | All files located in the node_modules and external directories are 34 | externally maintained libraries used by this software which have their 35 | own licenses; we recommend you read them, as their terms may differ from 36 | the terms above. 37 | --------------------------------------------------------------------------------