├── .gitattributes ├── .gitignore ├── ASP.NET ├── CourseApp │ ├── CourseApp.sln │ └── src │ │ ├── Application │ │ ├── CourseApp.DataTransferObjects │ │ │ ├── Class1.cs │ │ │ ├── CourseApp.DataTransferObjects.csproj │ │ │ ├── Requests │ │ │ │ ├── CreateNewCourseRequest.cs │ │ │ │ └── UpdateCourseRequest.cs │ │ │ └── Responses │ │ │ │ ├── CategoryDisplayResponse.cs │ │ │ │ └── CourseDisplayResponse.cs │ │ └── CourseApp.Services │ │ │ ├── CategoryService.cs │ │ │ ├── Class1.cs │ │ │ ├── CourseApp.Services.csproj │ │ │ ├── CourseService.cs │ │ │ ├── Extensions │ │ │ └── MappingExtensions.cs │ │ │ ├── ICategoryService.cs │ │ │ ├── ICourseService.cs │ │ │ ├── IUserService.cs │ │ │ ├── Mappings │ │ │ └── MapProfile.cs │ │ │ └── UserService.cs │ │ ├── Domain │ │ └── CourseApp.Entities │ │ │ ├── Category.cs │ │ │ ├── Class1.cs │ │ │ ├── Course.cs │ │ │ ├── CourseApp.Entities.csproj │ │ │ ├── IEntity.cs │ │ │ ├── Participant.cs │ │ │ └── User.cs │ │ ├── Infrastructure │ │ └── CourseApp.Infrastructure │ │ │ ├── Class1.cs │ │ │ ├── CourseApp.Infrastructure.csproj │ │ │ ├── Data │ │ │ ├── CourseDbContext.cs │ │ │ └── DbSeeding.cs │ │ │ └── Repositories │ │ │ ├── EFCategoryRepository.cs │ │ │ ├── EFCourseRepository.cs │ │ │ ├── FakeCategoryRepository.cs │ │ │ ├── FakeCourseRepository.cs │ │ │ ├── ICategoryRepository.cs │ │ │ ├── ICourseRepository.cs │ │ │ └── IRepository.cs │ │ ├── Web API │ │ └── CourseApp.API │ │ │ ├── Controllers │ │ │ ├── CoursesController.cs │ │ │ └── WeatherForecastController.cs │ │ │ ├── CourseApp.API.csproj │ │ │ ├── Extensions │ │ │ └── IoCExtensions.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ ├── WeatherForecast.cs │ │ │ ├── appsettings.Development.json │ │ │ └── appsettings.json │ │ └── webUI │ │ └── CourseApp.Mvc │ │ ├── CacheTools │ │ └── CacheDataInfo.cs │ │ ├── Controllers │ │ ├── CoursesController.cs │ │ ├── HomeController.cs │ │ ├── ShoppingController.cs │ │ └── UsersController.cs │ │ ├── CourseApp.Mvc.csproj │ │ ├── Extensions │ │ ├── IoCExtensions.cs │ │ └── SessionExtensions.cs │ │ ├── Models │ │ ├── CourseCollection.cs │ │ ├── ErrorViewModel.cs │ │ ├── PaginationCourseViewModel.cs │ │ ├── PagingInfo.cs │ │ └── UserLoginViewMdoel.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── TagBuilders │ │ └── PageLinkBuilder.cs │ │ ├── ViewComponents │ │ ├── BasketLinkViewComponent.cs │ │ └── MenuViewComponent.cs │ │ ├── Views │ │ ├── Courses │ │ │ ├── Create.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ ├── Home │ │ │ ├── Index.cshtml │ │ │ └── Privacy.cshtml │ │ ├── Shared │ │ │ ├── Components │ │ │ │ ├── BasketLink │ │ │ │ │ └── Default.cshtml │ │ │ │ └── Menu │ │ │ │ │ └── Default.cshtml │ │ │ ├── Error.cshtml │ │ │ ├── _CourseDisplay.cshtml │ │ │ ├── _Layout.cshtml │ │ │ ├── _Layout.cshtml.css │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── Shopping │ │ │ └── Index.cshtml │ │ ├── Users │ │ │ ├── AccessDenied.cshtml │ │ │ └── Login.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── libman.json │ │ └── wwwroot │ │ ├── AlertifyJS │ │ ├── alertify.min.js │ │ └── css │ │ │ └── alertify.min.css │ │ ├── css │ │ └── site.css │ │ ├── favicon.ico │ │ ├── js │ │ └── site.js │ │ └── lib │ │ ├── bootstrap │ │ ├── LICENSE │ │ └── dist │ │ │ ├── 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 │ │ │ └── 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 │ │ ├── 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 ├── CustomMiddlewares │ ├── CustomMiddlewares.sln │ └── CustomMiddlewares │ │ ├── CommentDetail.cs │ │ ├── Controllers │ │ └── WeatherForecastController.cs │ │ ├── CustomMiddlewares.csproj │ │ ├── Middlewares │ │ ├── BadWordsHandlerMiddleware.cs │ │ ├── JsonBodyMiddleware.cs │ │ └── RequestLoggingMiddleware.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── WeatherForecast.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json ├── DILifeTime │ ├── DILifeTime.sln │ └── DILifeTime │ │ ├── Controllers │ │ └── HomeController.cs │ │ ├── DILifeTime.csproj │ │ ├── Models │ │ ├── ErrorViewModel.cs │ │ └── IGuidGenerator.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Views │ │ ├── Home │ │ │ ├── Index.cshtml │ │ │ └── Privacy.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ ├── _Layout.cshtml.css │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── wwwroot │ │ ├── css │ │ └── site.css │ │ ├── favicon.ico │ │ ├── js │ │ └── site.js │ │ └── lib │ │ ├── bootstrap │ │ ├── LICENSE │ │ └── dist │ │ │ ├── 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 │ │ │ └── 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 │ │ ├── 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 ├── FirstMVCApp │ ├── FirstMVCApp.sln │ └── FirstMVCApp │ │ ├── Controllers │ │ └── HomeController.cs │ │ ├── FirstMVCApp.csproj │ │ ├── Models │ │ ├── Privacy.cs │ │ └── UserRegisterModel.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Views │ │ ├── Home │ │ │ ├── Index.cshtml │ │ │ ├── Privacy.cshtml │ │ │ └── Register.cshtml │ │ ├── Shared │ │ │ └── _Layout.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ │ ├── appsettings.Development.json │ │ ├── appsettings.Production.json │ │ ├── appsettings.json │ │ ├── libman.json │ │ └── wwwroot │ │ └── lib │ │ └── bootstrap │ │ ├── css │ │ └── bootstrap.min.css │ │ └── js │ │ └── bootstrap.bundle.min.js └── IdentityScaffold │ ├── IdentityScaffold.sln │ └── IdentityScaffold │ ├── Areas │ └── Identity │ │ └── Pages │ │ ├── Account │ │ ├── AccessDenied.cshtml │ │ ├── AccessDenied.cshtml.cs │ │ ├── ConfirmEmail.cshtml │ │ ├── ConfirmEmail.cshtml.cs │ │ ├── ConfirmEmailChange.cshtml │ │ ├── ConfirmEmailChange.cshtml.cs │ │ ├── ExternalLogin.cshtml │ │ ├── ExternalLogin.cshtml.cs │ │ ├── ForgotPassword.cshtml │ │ ├── ForgotPassword.cshtml.cs │ │ ├── ForgotPasswordConfirmation.cshtml │ │ ├── ForgotPasswordConfirmation.cshtml.cs │ │ ├── Lockout.cshtml │ │ ├── Lockout.cshtml.cs │ │ ├── Login.cshtml │ │ ├── Login.cshtml.cs │ │ ├── LoginWith2fa.cshtml │ │ ├── LoginWith2fa.cshtml.cs │ │ ├── LoginWithRecoveryCode.cshtml │ │ ├── LoginWithRecoveryCode.cshtml.cs │ │ ├── Logout.cshtml │ │ ├── Logout.cshtml.cs │ │ ├── Manage │ │ │ ├── ChangePassword.cshtml │ │ │ ├── ChangePassword.cshtml.cs │ │ │ ├── DeletePersonalData.cshtml │ │ │ ├── DeletePersonalData.cshtml.cs │ │ │ ├── Disable2fa.cshtml │ │ │ ├── Disable2fa.cshtml.cs │ │ │ ├── DownloadPersonalData.cshtml │ │ │ ├── DownloadPersonalData.cshtml.cs │ │ │ ├── Email.cshtml │ │ │ ├── Email.cshtml.cs │ │ │ ├── EnableAuthenticator.cshtml │ │ │ ├── EnableAuthenticator.cshtml.cs │ │ │ ├── ExternalLogins.cshtml │ │ │ ├── ExternalLogins.cshtml.cs │ │ │ ├── GenerateRecoveryCodes.cshtml │ │ │ ├── GenerateRecoveryCodes.cshtml.cs │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ ├── ManageNavPages.cs │ │ │ ├── PersonalData.cshtml │ │ │ ├── PersonalData.cshtml.cs │ │ │ ├── ResetAuthenticator.cshtml │ │ │ ├── ResetAuthenticator.cshtml.cs │ │ │ ├── SetPassword.cshtml │ │ │ ├── SetPassword.cshtml.cs │ │ │ ├── ShowRecoveryCodes.cshtml │ │ │ ├── ShowRecoveryCodes.cshtml.cs │ │ │ ├── TwoFactorAuthentication.cshtml │ │ │ ├── TwoFactorAuthentication.cshtml.cs │ │ │ ├── _Layout.cshtml │ │ │ ├── _ManageNav.cshtml │ │ │ ├── _StatusMessage.cshtml │ │ │ └── _ViewImports.cshtml │ │ ├── Register.cshtml │ │ ├── Register.cshtml.cs │ │ ├── RegisterConfirmation.cshtml │ │ ├── RegisterConfirmation.cshtml.cs │ │ ├── ResendEmailConfirmation.cshtml │ │ ├── ResendEmailConfirmation.cshtml.cs │ │ ├── ResetPassword.cshtml │ │ ├── ResetPassword.cshtml.cs │ │ ├── ResetPasswordConfirmation.cshtml │ │ ├── ResetPasswordConfirmation.cshtml.cs │ │ ├── _StatusMessage.cshtml │ │ └── _ViewImports.cshtml │ │ ├── Error.cshtml │ │ ├── Error.cshtml.cs │ │ ├── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── Controllers │ └── HomeController.cs │ ├── Data │ ├── ApplicationDbContext.cs │ └── Migrations │ │ ├── 00000000000000_CreateIdentitySchema.Designer.cs │ │ ├── 00000000000000_CreateIdentitySchema.cs │ │ └── ApplicationDbContextModelSnapshot.cs │ ├── IdentityScaffold.csproj │ ├── Models │ └── ErrorViewModel.cs │ ├── Program.cs │ ├── Properties │ ├── launchSettings.json │ ├── serviceDependencies.json │ └── serviceDependencies.local.json │ ├── Views │ ├── Home │ │ ├── Index.cshtml │ │ └── Privacy.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ ├── _Layout.cshtml.css │ │ ├── _LoginPartial.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ ├── css │ └── site.css │ ├── favicon.ico │ ├── js │ └── site.js │ └── lib │ ├── bootstrap │ ├── LICENSE │ └── dist │ │ ├── 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 │ │ └── 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 │ ├── 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 ├── Books ├── Sam Newman - Building Microservices, 2nd Edition-O'Reilly Media, Inc. (2021).epub └── Sam Newman - Monolith to Microservices_ Evolutionary Patterns to Transform Your Monolith-O’Reilly Media (2019).epub ├── C# ├── AdvancedFeatures │ ├── DelegatesAndEvents │ │ ├── DelegatesAndEvents.sln │ │ ├── Events │ │ │ ├── Events.csproj │ │ │ ├── Form1.Designer.cs │ │ │ ├── Form1.cs │ │ │ ├── Form1.resx │ │ │ ├── Program.cs │ │ │ └── User.cs │ │ └── usingDelegates │ │ │ ├── FilterHelper.cs │ │ │ ├── Program.cs │ │ │ └── usingDelegates.csproj │ ├── LINQ │ │ ├── ExtensionMethods │ │ │ ├── BaskaBirClass.cs │ │ │ ├── ExtensionMethods.csproj │ │ │ ├── Extensions.cs │ │ │ └── Program.cs │ │ ├── LINQ.sln │ │ └── LinqIntro │ │ │ ├── LinqIntro.csproj │ │ │ ├── Product.cs │ │ │ └── Program.cs │ └── MultiThreading │ │ ├── MultiThreading.sln │ │ ├── basicThread │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ └── basicThread.csproj │ │ └── taskMechanism │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ └── taskMechanism.csproj ├── Basics │ ├── Arrays │ │ ├── .vs │ │ │ ├── Arrays │ │ │ │ ├── DesignTimeBuild │ │ │ │ │ └── .dtbcache.v2 │ │ │ │ ├── FileContentIndex │ │ │ │ │ ├── f9334cae-a4c8-47c1-9af0-3d1c28878695.vsidx │ │ │ │ │ └── read.lock │ │ │ │ └── v17 │ │ │ │ │ ├── .futdcache.v2 │ │ │ │ │ └── .suo │ │ │ └── ProjectEvaluation │ │ │ │ ├── arrays.metadata.v5.2 │ │ │ │ └── arrays.projects.v5.2 │ │ ├── Arrays.sln │ │ └── Arrays │ │ │ ├── Arrays.csproj │ │ │ ├── Program.cs │ │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net6.0 │ │ │ │ ├── Arrays.deps.json │ │ │ │ ├── Arrays.dll │ │ │ │ ├── Arrays.exe │ │ │ │ ├── Arrays.pdb │ │ │ │ └── Arrays.runtimeconfig.json │ │ │ └── obj │ │ │ ├── Arrays.csproj.nuget.dgspec.json │ │ │ ├── Arrays.csproj.nuget.g.props │ │ │ ├── Arrays.csproj.nuget.g.targets │ │ │ ├── Debug │ │ │ └── net6.0 │ │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ │ ├── Arrays.AssemblyInfo.cs │ │ │ │ ├── Arrays.AssemblyInfoInputs.cache │ │ │ │ ├── Arrays.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── Arrays.GlobalUsings.g.cs │ │ │ │ ├── Arrays.assets.cache │ │ │ │ ├── Arrays.csproj.AssemblyReference.cache │ │ │ │ ├── Arrays.csproj.BuildWithSkipAnalyzers │ │ │ │ ├── Arrays.csproj.CoreCompileInputs.cache │ │ │ │ ├── Arrays.csproj.FileListAbsolute.txt │ │ │ │ ├── Arrays.dll │ │ │ │ ├── Arrays.genruntimeconfig.cache │ │ │ │ ├── Arrays.pdb │ │ │ │ ├── _IsIncrementalBuild │ │ │ │ ├── apphost.exe │ │ │ │ ├── ref │ │ │ │ └── Arrays.dll │ │ │ │ └── refint │ │ │ │ └── Arrays.dll │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── BuiltInFunctions │ │ ├── .vs │ │ │ ├── BuiltInFunctions │ │ │ │ ├── DesignTimeBuild │ │ │ │ │ └── .dtbcache.v2 │ │ │ │ ├── FileContentIndex │ │ │ │ │ ├── 5bca9c6e-a721-45e8-8ec4-d18b61b81b29.vsidx │ │ │ │ │ └── read.lock │ │ │ │ └── v17 │ │ │ │ │ ├── .futdcache.v2 │ │ │ │ │ └── .suo │ │ │ └── ProjectEvaluation │ │ │ │ ├── builtinfunctions.metadata.v5.2 │ │ │ │ └── builtinfunctions.projects.v5.2 │ │ ├── BuiltInFunctions.sln │ │ └── BuiltInFunctions │ │ │ ├── BuiltInFunctions.csproj │ │ │ ├── Program.cs │ │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net6.0 │ │ │ │ ├── BuiltInFunctions.deps.json │ │ │ │ ├── BuiltInFunctions.dll │ │ │ │ ├── BuiltInFunctions.exe │ │ │ │ ├── BuiltInFunctions.pdb │ │ │ │ └── BuiltInFunctions.runtimeconfig.json │ │ │ └── obj │ │ │ ├── BuiltInFunctions.csproj.nuget.dgspec.json │ │ │ ├── BuiltInFunctions.csproj.nuget.g.props │ │ │ ├── BuiltInFunctions.csproj.nuget.g.targets │ │ │ ├── Debug │ │ │ └── net6.0 │ │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ │ ├── BuiltInFunctions.AssemblyInfo.cs │ │ │ │ ├── BuiltInFunctions.AssemblyInfoInputs.cache │ │ │ │ ├── BuiltInFunctions.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── BuiltInFunctions.GlobalUsings.g.cs │ │ │ │ ├── BuiltInFunctions.assets.cache │ │ │ │ ├── BuiltInFunctions.csproj.AssemblyReference.cache │ │ │ │ ├── BuiltInFunctions.csproj.BuildWithSkipAnalyzers │ │ │ │ ├── BuiltInFunctions.csproj.CoreCompileInputs.cache │ │ │ │ ├── BuiltInFunctions.csproj.FileListAbsolute.txt │ │ │ │ ├── BuiltInFunctions.dll │ │ │ │ ├── BuiltInFunctions.genruntimeconfig.cache │ │ │ │ ├── BuiltInFunctions.pdb │ │ │ │ ├── _IsIncrementalBuild │ │ │ │ ├── apphost.exe │ │ │ │ ├── ref │ │ │ │ └── BuiltInFunctions.dll │ │ │ │ └── refint │ │ │ │ └── BuiltInFunctions.dll │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── KararYapilari_If │ │ ├── .vs │ │ │ ├── KararYapilari_If │ │ │ │ ├── DesignTimeBuild │ │ │ │ │ └── .dtbcache.v2 │ │ │ │ ├── FileContentIndex │ │ │ │ │ ├── dc04fe09-b750-47e2-97ec-8b53eae43af8.vsidx │ │ │ │ │ └── read.lock │ │ │ │ └── v17 │ │ │ │ │ ├── .futdcache.v2 │ │ │ │ │ └── .suo │ │ │ └── ProjectEvaluation │ │ │ │ ├── kararyapilari_if.metadata.v5.2 │ │ │ │ └── kararyapilari_if.projects.v5.2 │ │ ├── KararYapilari_If.sln │ │ └── KararYapilari_If │ │ │ ├── KararYapilari_If.csproj │ │ │ ├── Program.cs │ │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net6.0 │ │ │ │ ├── KararYapilari_If.deps.json │ │ │ │ ├── KararYapilari_If.dll │ │ │ │ ├── KararYapilari_If.exe │ │ │ │ ├── KararYapilari_If.pdb │ │ │ │ └── KararYapilari_If.runtimeconfig.json │ │ │ └── obj │ │ │ ├── Debug │ │ │ └── net6.0 │ │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ │ ├── KararYapilari_If.AssemblyInfo.cs │ │ │ │ ├── KararYapilari_If.AssemblyInfoInputs.cache │ │ │ │ ├── KararYapilari_If.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── KararYapilari_If.GlobalUsings.g.cs │ │ │ │ ├── KararYapilari_If.assets.cache │ │ │ │ ├── KararYapilari_If.csproj.AssemblyReference.cache │ │ │ │ ├── KararYapilari_If.csproj.BuildWithSkipAnalyzers │ │ │ │ ├── KararYapilari_If.csproj.CoreCompileInputs.cache │ │ │ │ ├── KararYapilari_If.csproj.FileListAbsolute.txt │ │ │ │ ├── KararYapilari_If.dll │ │ │ │ ├── KararYapilari_If.genruntimeconfig.cache │ │ │ │ ├── KararYapilari_If.pdb │ │ │ │ ├── _IsIncrementalBuild │ │ │ │ ├── apphost.exe │ │ │ │ ├── ref │ │ │ │ └── KararYapilari_If.dll │ │ │ │ └── refint │ │ │ │ └── KararYapilari_If.dll │ │ │ ├── KararYapilari_If.csproj.nuget.dgspec.json │ │ │ ├── KararYapilari_If.csproj.nuget.g.props │ │ │ ├── KararYapilari_If.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── MethodOverloading │ │ ├── .vs │ │ │ ├── MethodOverloading │ │ │ │ ├── DesignTimeBuild │ │ │ │ │ └── .dtbcache.v2 │ │ │ │ ├── FileContentIndex │ │ │ │ │ ├── 1e5c1b2c-5568-4682-9b77-691c8b04577c.vsidx │ │ │ │ │ └── read.lock │ │ │ │ └── v17 │ │ │ │ │ ├── .futdcache.v2 │ │ │ │ │ └── .suo │ │ │ └── ProjectEvaluation │ │ │ │ ├── methodoverloading.metadata.v5.2 │ │ │ │ └── methodoverloading.projects.v5.2 │ │ ├── MethodOverloading.sln │ │ └── MethodOverloading │ │ │ ├── MethodOverloading.csproj │ │ │ ├── Program.cs │ │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net6.0 │ │ │ │ ├── MethodOverloading.deps.json │ │ │ │ ├── MethodOverloading.dll │ │ │ │ ├── MethodOverloading.exe │ │ │ │ ├── MethodOverloading.pdb │ │ │ │ └── MethodOverloading.runtimeconfig.json │ │ │ └── obj │ │ │ ├── Debug │ │ │ └── net6.0 │ │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ │ ├── MethodOverloading.AssemblyInfo.cs │ │ │ │ ├── MethodOverloading.AssemblyInfoInputs.cache │ │ │ │ ├── MethodOverloading.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── MethodOverloading.GlobalUsings.g.cs │ │ │ │ ├── MethodOverloading.assets.cache │ │ │ │ ├── MethodOverloading.csproj.AssemblyReference.cache │ │ │ │ ├── MethodOverloading.csproj.CoreCompileInputs.cache │ │ │ │ ├── MethodOverloading.csproj.FileListAbsolute.txt │ │ │ │ ├── MethodOverloading.dll │ │ │ │ ├── MethodOverloading.genruntimeconfig.cache │ │ │ │ ├── MethodOverloading.pdb │ │ │ │ ├── _IsIncrementalBuild │ │ │ │ ├── apphost.exe │ │ │ │ ├── ref │ │ │ │ └── MethodOverloading.dll │ │ │ │ └── refint │ │ │ │ └── MethodOverloading.dll │ │ │ ├── MethodOverloading.csproj.nuget.dgspec.json │ │ │ ├── MethodOverloading.csproj.nuget.g.props │ │ │ ├── MethodOverloading.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── VariablesAndTypes │ │ ├── .vs │ │ │ ├── ProjectEvaluation │ │ │ │ ├── variablesandtypes.metadata.v5.2 │ │ │ │ └── variablesandtypes.projects.v5.2 │ │ │ └── VariablesAndTypes │ │ │ │ ├── DesignTimeBuild │ │ │ │ └── .dtbcache.v2 │ │ │ │ ├── FileContentIndex │ │ │ │ ├── ed6bb560-f96b-436a-ba1f-f9d09e24e176.vsidx │ │ │ │ └── read.lock │ │ │ │ └── v17 │ │ │ │ ├── .futdcache.v2 │ │ │ │ └── .suo │ │ ├── VariablesAndTypes.sln │ │ └── VariablesAndTypes │ │ │ ├── Program.cs │ │ │ ├── VariablesAndTypes.csproj │ │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net6.0 │ │ │ │ ├── VariablesAndTypes.deps.json │ │ │ │ ├── VariablesAndTypes.dll │ │ │ │ ├── VariablesAndTypes.exe │ │ │ │ ├── VariablesAndTypes.pdb │ │ │ │ └── VariablesAndTypes.runtimeconfig.json │ │ │ └── obj │ │ │ ├── Debug │ │ │ └── net6.0 │ │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ │ ├── VariablesAndTypes.AssemblyInfo.cs │ │ │ │ ├── VariablesAndTypes.AssemblyInfoInputs.cache │ │ │ │ ├── VariablesAndTypes.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── VariablesAndTypes.GlobalUsings.g.cs │ │ │ │ ├── VariablesAndTypes.assets.cache │ │ │ │ ├── VariablesAndTypes.csproj.AssemblyReference.cache │ │ │ │ ├── VariablesAndTypes.csproj.BuildWithSkipAnalyzers │ │ │ │ ├── VariablesAndTypes.csproj.CoreCompileInputs.cache │ │ │ │ ├── VariablesAndTypes.csproj.FileListAbsolute.txt │ │ │ │ ├── VariablesAndTypes.dll │ │ │ │ ├── VariablesAndTypes.genruntimeconfig.cache │ │ │ │ ├── VariablesAndTypes.pdb │ │ │ │ ├── _IsIncrementalBuild │ │ │ │ ├── apphost.exe │ │ │ │ ├── ref │ │ │ │ └── VariablesAndTypes.dll │ │ │ │ └── refint │ │ │ │ └── VariablesAndTypes.dll │ │ │ ├── VariablesAndTypes.csproj.nuget.dgspec.json │ │ │ ├── VariablesAndTypes.csproj.nuget.g.props │ │ │ ├── VariablesAndTypes.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── creatingFunctions │ │ ├── .vs │ │ │ ├── ProjectEvaluation │ │ │ │ ├── creatingfunctions.metadata.v5.2 │ │ │ │ └── creatingfunctions.projects.v5.2 │ │ │ └── creatingFunctions │ │ │ │ ├── DesignTimeBuild │ │ │ │ └── .dtbcache.v2 │ │ │ │ ├── FileContentIndex │ │ │ │ ├── d450ca3e-e4e0-4542-afc4-d191965640ac.vsidx │ │ │ │ └── read.lock │ │ │ │ └── v17 │ │ │ │ ├── .futdcache.v2 │ │ │ │ └── .suo │ │ ├── creatingFunctions.sln │ │ └── creatingFunctions │ │ │ ├── Program.cs │ │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net6.0 │ │ │ │ ├── creatingFunctions.deps.json │ │ │ │ ├── creatingFunctions.dll │ │ │ │ ├── creatingFunctions.exe │ │ │ │ ├── creatingFunctions.pdb │ │ │ │ └── creatingFunctions.runtimeconfig.json │ │ │ ├── creatingFunctions.csproj │ │ │ └── obj │ │ │ ├── Debug │ │ │ └── net6.0 │ │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ │ ├── _IsIncrementalBuild │ │ │ │ ├── apphost.exe │ │ │ │ ├── creatingFunctions.AssemblyInfo.cs │ │ │ │ ├── creatingFunctions.AssemblyInfoInputs.cache │ │ │ │ ├── creatingFunctions.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── creatingFunctions.GlobalUsings.g.cs │ │ │ │ ├── creatingFunctions.assets.cache │ │ │ │ ├── creatingFunctions.csproj.AssemblyReference.cache │ │ │ │ ├── creatingFunctions.csproj.BuildWithSkipAnalyzers │ │ │ │ ├── creatingFunctions.csproj.CoreCompileInputs.cache │ │ │ │ ├── creatingFunctions.csproj.FileListAbsolute.txt │ │ │ │ ├── creatingFunctions.dll │ │ │ │ ├── creatingFunctions.genruntimeconfig.cache │ │ │ │ ├── creatingFunctions.pdb │ │ │ │ ├── ref │ │ │ │ └── creatingFunctions.dll │ │ │ │ └── refint │ │ │ │ └── creatingFunctions.dll │ │ │ ├── creatingFunctions.csproj.nuget.dgspec.json │ │ │ ├── creatingFunctions.csproj.nuget.g.props │ │ │ ├── creatingFunctions.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── forEachLoop │ │ ├── .vs │ │ │ ├── ProjectEvaluation │ │ │ │ ├── foreachloop.metadata.v5.2 │ │ │ │ └── foreachloop.projects.v5.2 │ │ │ └── forEachLoop │ │ │ │ ├── DesignTimeBuild │ │ │ │ └── .dtbcache.v2 │ │ │ │ ├── FileContentIndex │ │ │ │ ├── 347dc63b-89f2-4042-841a-29150be2eb81.vsidx │ │ │ │ └── read.lock │ │ │ │ └── v17 │ │ │ │ ├── .futdcache.v2 │ │ │ │ └── .suo │ │ ├── forEachLoop.sln │ │ └── forEachLoop │ │ │ ├── Program.cs │ │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net6.0 │ │ │ │ ├── forEachLoop.deps.json │ │ │ │ ├── forEachLoop.dll │ │ │ │ ├── forEachLoop.exe │ │ │ │ ├── forEachLoop.pdb │ │ │ │ └── forEachLoop.runtimeconfig.json │ │ │ ├── forEachLoop.csproj │ │ │ └── obj │ │ │ ├── Debug │ │ │ └── net6.0 │ │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ │ ├── _IsIncrementalBuild │ │ │ │ ├── apphost.exe │ │ │ │ ├── forEachLoop.AssemblyInfo.cs │ │ │ │ ├── forEachLoop.AssemblyInfoInputs.cache │ │ │ │ ├── forEachLoop.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── forEachLoop.GlobalUsings.g.cs │ │ │ │ ├── forEachLoop.assets.cache │ │ │ │ ├── forEachLoop.csproj.AssemblyReference.cache │ │ │ │ ├── forEachLoop.csproj.BuildWithSkipAnalyzers │ │ │ │ ├── forEachLoop.csproj.CoreCompileInputs.cache │ │ │ │ ├── forEachLoop.csproj.FileListAbsolute.txt │ │ │ │ ├── forEachLoop.dll │ │ │ │ ├── forEachLoop.genruntimeconfig.cache │ │ │ │ ├── forEachLoop.pdb │ │ │ │ ├── ref │ │ │ │ └── forEachLoop.dll │ │ │ │ └── refint │ │ │ │ └── forEachLoop.dll │ │ │ ├── forEachLoop.csproj.nuget.dgspec.json │ │ │ ├── forEachLoop.csproj.nuget.g.props │ │ │ ├── forEachLoop.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── forLoop │ │ ├── .vs │ │ │ └── forLoop │ │ │ │ ├── FileContentIndex │ │ │ │ ├── aea3664a-592f-4d90-9754-36958b11fc7e.vsidx │ │ │ │ └── read.lock │ │ │ │ └── v17 │ │ │ │ └── .suo │ │ ├── forLoop.sln │ │ └── forLoop │ │ │ ├── Program.cs │ │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net6.0 │ │ │ │ ├── forLoop.deps.json │ │ │ │ ├── forLoop.dll │ │ │ │ ├── forLoop.exe │ │ │ │ ├── forLoop.pdb │ │ │ │ └── forLoop.runtimeconfig.json │ │ │ ├── forLoop.csproj │ │ │ └── obj │ │ │ ├── Debug │ │ │ └── net6.0 │ │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ │ ├── _IsIncrementalBuild │ │ │ │ ├── apphost.exe │ │ │ │ ├── forLoop.AssemblyInfo.cs │ │ │ │ ├── forLoop.AssemblyInfoInputs.cache │ │ │ │ ├── forLoop.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── forLoop.GlobalUsings.g.cs │ │ │ │ ├── forLoop.assets.cache │ │ │ │ ├── forLoop.csproj.AssemblyReference.cache │ │ │ │ ├── forLoop.csproj.BuildWithSkipAnalyzers │ │ │ │ ├── forLoop.csproj.CoreCompileInputs.cache │ │ │ │ ├── forLoop.csproj.FileListAbsolute.txt │ │ │ │ ├── forLoop.dll │ │ │ │ ├── forLoop.genruntimeconfig.cache │ │ │ │ ├── forLoop.pdb │ │ │ │ ├── ref │ │ │ │ └── forLoop.dll │ │ │ │ └── refint │ │ │ │ └── forLoop.dll │ │ │ ├── forLoop.csproj.nuget.dgspec.json │ │ │ ├── forLoop.csproj.nuget.g.props │ │ │ ├── forLoop.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── intruceConcept │ │ ├── .vs │ │ │ ├── ProjectEvaluation │ │ │ │ ├── intruceconcept.metadata.v5.2 │ │ │ │ └── intruceconcept.projects.v5.2 │ │ │ └── intruceConcept │ │ │ │ ├── DesignTimeBuild │ │ │ │ └── .dtbcache.v2 │ │ │ │ ├── FileContentIndex │ │ │ │ ├── aa5c9912-a025-47f1-8e17-ba8a235507d1.vsidx │ │ │ │ └── read.lock │ │ │ │ └── v17 │ │ │ │ ├── .futdcache.v2 │ │ │ │ └── .suo │ │ ├── intruceConcept.sln │ │ └── intruceConcept │ │ │ ├── Program.cs │ │ │ ├── intruceConcept.csproj │ │ │ └── obj │ │ │ ├── Debug │ │ │ └── net6.0 │ │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ │ ├── intruceConcept.AssemblyInfo.cs │ │ │ │ ├── intruceConcept.AssemblyInfoInputs.cache │ │ │ │ ├── intruceConcept.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── intruceConcept.GlobalUsings.g.cs │ │ │ │ ├── intruceConcept.assets.cache │ │ │ │ └── intruceConcept.csproj.AssemblyReference.cache │ │ │ ├── intruceConcept.csproj.nuget.dgspec.json │ │ │ ├── intruceConcept.csproj.nuget.g.props │ │ │ ├── intruceConcept.csproj.nuget.g.targets │ │ │ ├── project.assets.json │ │ │ └── project.nuget.cache │ ├── switchCase │ │ ├── .vs │ │ │ ├── ProjectEvaluation │ │ │ │ ├── switchcase.metadata.v5.2 │ │ │ │ └── switchcase.projects.v5.2 │ │ │ └── switchCase │ │ │ │ ├── DesignTimeBuild │ │ │ │ └── .dtbcache.v2 │ │ │ │ ├── FileContentIndex │ │ │ │ ├── 378a07a6-4684-4875-953b-a425d6454206.vsidx │ │ │ │ └── read.lock │ │ │ │ └── v17 │ │ │ │ ├── .futdcache.v2 │ │ │ │ └── .suo │ │ ├── switchCase.sln │ │ └── switchCase │ │ │ ├── Program.cs │ │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net6.0 │ │ │ │ ├── switchCase.deps.json │ │ │ │ ├── switchCase.dll │ │ │ │ ├── switchCase.exe │ │ │ │ ├── switchCase.pdb │ │ │ │ └── switchCase.runtimeconfig.json │ │ │ ├── obj │ │ │ ├── Debug │ │ │ │ └── net6.0 │ │ │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ │ │ ├── _IsIncrementalBuild │ │ │ │ │ ├── apphost.exe │ │ │ │ │ ├── ref │ │ │ │ │ └── switchCase.dll │ │ │ │ │ ├── refint │ │ │ │ │ └── switchCase.dll │ │ │ │ │ ├── switchCase.AssemblyInfo.cs │ │ │ │ │ ├── switchCase.AssemblyInfoInputs.cache │ │ │ │ │ ├── switchCase.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ │ ├── switchCase.GlobalUsings.g.cs │ │ │ │ │ ├── switchCase.assets.cache │ │ │ │ │ ├── switchCase.csproj.AssemblyReference.cache │ │ │ │ │ ├── switchCase.csproj.BuildWithSkipAnalyzers │ │ │ │ │ ├── switchCase.csproj.CoreCompileInputs.cache │ │ │ │ │ ├── switchCase.csproj.FileListAbsolute.txt │ │ │ │ │ ├── switchCase.dll │ │ │ │ │ ├── switchCase.genruntimeconfig.cache │ │ │ │ │ └── switchCase.pdb │ │ │ ├── project.assets.json │ │ │ ├── project.nuget.cache │ │ │ ├── switchCase.csproj.nuget.dgspec.json │ │ │ ├── switchCase.csproj.nuget.g.props │ │ │ └── switchCase.csproj.nuget.g.targets │ │ │ └── switchCase.csproj │ ├── tryAndCatch │ │ ├── .vs │ │ │ ├── ProjectEvaluation │ │ │ │ ├── tryandcatch.metadata.v5.2 │ │ │ │ └── tryandcatch.projects.v5.2 │ │ │ └── tryAndCatch │ │ │ │ ├── DesignTimeBuild │ │ │ │ └── .dtbcache.v2 │ │ │ │ ├── FileContentIndex │ │ │ │ ├── 4023be1d-0ef4-4a81-9461-406ee93097f7.vsidx │ │ │ │ └── read.lock │ │ │ │ └── v17 │ │ │ │ ├── .futdcache.v2 │ │ │ │ └── .suo │ │ ├── tryAndCatch.sln │ │ └── tryAndCatch │ │ │ ├── Program.cs │ │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── net6.0 │ │ │ │ ├── tryAndCatch.deps.json │ │ │ │ ├── tryAndCatch.dll │ │ │ │ ├── tryAndCatch.exe │ │ │ │ ├── tryAndCatch.pdb │ │ │ │ └── tryAndCatch.runtimeconfig.json │ │ │ ├── obj │ │ │ ├── Debug │ │ │ │ └── net6.0 │ │ │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ │ │ ├── _IsIncrementalBuild │ │ │ │ │ ├── apphost.exe │ │ │ │ │ ├── ref │ │ │ │ │ └── tryAndCatch.dll │ │ │ │ │ ├── refint │ │ │ │ │ └── tryAndCatch.dll │ │ │ │ │ ├── tryAndCatch.AssemblyInfo.cs │ │ │ │ │ ├── tryAndCatch.AssemblyInfoInputs.cache │ │ │ │ │ ├── tryAndCatch.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ │ ├── tryAndCatch.GlobalUsings.g.cs │ │ │ │ │ ├── tryAndCatch.assets.cache │ │ │ │ │ ├── tryAndCatch.csproj.AssemblyReference.cache │ │ │ │ │ ├── tryAndCatch.csproj.BuildWithSkipAnalyzers │ │ │ │ │ ├── tryAndCatch.csproj.CoreCompileInputs.cache │ │ │ │ │ ├── tryAndCatch.csproj.FileListAbsolute.txt │ │ │ │ │ ├── tryAndCatch.dll │ │ │ │ │ ├── tryAndCatch.genruntimeconfig.cache │ │ │ │ │ └── tryAndCatch.pdb │ │ │ ├── project.assets.json │ │ │ ├── project.nuget.cache │ │ │ ├── tryAndCatch.csproj.nuget.dgspec.json │ │ │ ├── tryAndCatch.csproj.nuget.g.props │ │ │ └── tryAndCatch.csproj.nuget.g.targets │ │ │ └── tryAndCatch.csproj │ └── whileLoop │ │ ├── .vs │ │ ├── ProjectEvaluation │ │ │ ├── whileloop.metadata.v5.2 │ │ │ └── whileloop.projects.v5.2 │ │ └── whileLoop │ │ │ ├── DesignTimeBuild │ │ │ └── .dtbcache.v2 │ │ │ ├── FileContentIndex │ │ │ ├── 651f4ce7-8db9-4d23-b249-7d8e3b4b6bd2.vsidx │ │ │ └── read.lock │ │ │ └── v17 │ │ │ ├── .futdcache.v2 │ │ │ └── .suo │ │ ├── whileLoop.sln │ │ └── whileLoop │ │ ├── Program.cs │ │ ├── bin │ │ └── Debug │ │ │ └── net6.0 │ │ │ ├── whileLoop.deps.json │ │ │ ├── whileLoop.dll │ │ │ ├── whileLoop.exe │ │ │ ├── whileLoop.pdb │ │ │ └── whileLoop.runtimeconfig.json │ │ ├── obj │ │ ├── Debug │ │ │ └── net6.0 │ │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ │ ├── _IsIncrementalBuild │ │ │ │ ├── apphost.exe │ │ │ │ ├── ref │ │ │ │ └── whileLoop.dll │ │ │ │ ├── refint │ │ │ │ └── whileLoop.dll │ │ │ │ ├── whileLoop.AssemblyInfo.cs │ │ │ │ ├── whileLoop.AssemblyInfoInputs.cache │ │ │ │ ├── whileLoop.GeneratedMSBuildEditorConfig.editorconfig │ │ │ │ ├── whileLoop.GlobalUsings.g.cs │ │ │ │ ├── whileLoop.assets.cache │ │ │ │ ├── whileLoop.csproj.AssemblyReference.cache │ │ │ │ ├── whileLoop.csproj.BuildWithSkipAnalyzers │ │ │ │ ├── whileLoop.csproj.CoreCompileInputs.cache │ │ │ │ ├── whileLoop.csproj.FileListAbsolute.txt │ │ │ │ ├── whileLoop.dll │ │ │ │ ├── whileLoop.genruntimeconfig.cache │ │ │ │ └── whileLoop.pdb │ │ ├── project.assets.json │ │ ├── project.nuget.cache │ │ ├── whileLoop.csproj.nuget.dgspec.json │ │ ├── whileLoop.csproj.nuget.g.props │ │ └── whileLoop.csproj.nuget.g.targets │ │ └── whileLoop.csproj └── OOP │ ├── NullConcept │ ├── GenericTypes │ │ ├── GenericTypes.csproj │ │ └── Program.cs │ ├── NullConcept.sln │ └── NullOperations │ │ ├── NullOperations.csproj │ │ └── Program.cs │ └── OOPOverview │ ├── .vs │ ├── OOPOverview │ │ ├── DesignTimeBuild │ │ │ └── .dtbcache.v2 │ │ ├── FileContentIndex │ │ │ ├── 2ee87b31-5282-4050-9ad9-3863e5790b6c.vsidx │ │ │ ├── d6ccb76c-0299-4ea0-8681-ab0c058ecc93.vsidx │ │ │ └── read.lock │ │ └── v17 │ │ │ ├── .futdcache.v2 │ │ │ └── .suo │ └── ProjectEvaluation │ │ ├── oopoverview.metadata.v5.2 │ │ └── oopoverview.projects.v5.2 │ ├── AbstractVSInterface │ ├── AbstractVSInterface.csproj │ ├── Document.cs │ ├── Program.cs │ └── obj │ │ ├── AbstractVSInterface.csproj.nuget.dgspec.json │ │ ├── AbstractVSInterface.csproj.nuget.g.props │ │ ├── AbstractVSInterface.csproj.nuget.g.targets │ │ ├── Debug │ │ └── net6.0 │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ ├── AbstractVSInterface.AssemblyInfo.cs │ │ │ ├── AbstractVSInterface.AssemblyInfoInputs.cache │ │ │ ├── AbstractVSInterface.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── AbstractVSInterface.GlobalUsings.g.cs │ │ │ ├── AbstractVSInterface.assets.cache │ │ │ └── AbstractVSInterface.csproj.AssemblyReference.cache │ │ ├── project.assets.json │ │ └── project.nuget.cache │ ├── BuiltInInterface │ ├── BuiltInInterface.sln │ └── BuiltInInterface │ │ ├── BuiltInInterface.csproj │ │ ├── Person.cs │ │ ├── Product.cs │ │ └── Program.cs │ ├── ClassVSObject │ ├── ClassVSObject.csproj │ ├── Product.cs │ ├── Program.cs │ ├── bin │ │ └── Debug │ │ │ └── net6.0 │ │ │ ├── ClassVSObject.deps.json │ │ │ ├── ClassVSObject.dll │ │ │ ├── ClassVSObject.exe │ │ │ ├── ClassVSObject.pdb │ │ │ └── ClassVSObject.runtimeconfig.json │ └── obj │ │ ├── ClassVSObject.csproj.nuget.dgspec.json │ │ ├── ClassVSObject.csproj.nuget.g.props │ │ ├── ClassVSObject.csproj.nuget.g.targets │ │ ├── Debug │ │ └── net6.0 │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ ├── ClassVSObject.AssemblyInfo.cs │ │ │ ├── ClassVSObject.AssemblyInfoInputs.cache │ │ │ ├── ClassVSObject.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── ClassVSObject.GlobalUsings.g.cs │ │ │ ├── ClassVSObject.assets.cache │ │ │ ├── ClassVSObject.csproj.AssemblyReference.cache │ │ │ ├── ClassVSObject.csproj.BuildWithSkipAnalyzers │ │ │ ├── ClassVSObject.csproj.CoreCompileInputs.cache │ │ │ ├── ClassVSObject.csproj.FileListAbsolute.txt │ │ │ ├── ClassVSObject.dll │ │ │ ├── ClassVSObject.genruntimeconfig.cache │ │ │ ├── ClassVSObject.pdb │ │ │ ├── _IsIncrementalBuild │ │ │ ├── apphost.exe │ │ │ ├── ref │ │ │ └── ClassVSObject.dll │ │ │ └── refint │ │ │ └── ClassVSObject.dll │ │ ├── project.assets.json │ │ └── project.nuget.cache │ ├── Constructors │ ├── Constructors.csproj │ ├── Ekmek.cs │ ├── Program.cs │ ├── ReportGenerator.cs │ ├── bin │ │ └── Debug │ │ │ └── net6.0 │ │ │ ├── Constructors.deps.json │ │ │ ├── Constructors.dll │ │ │ ├── Constructors.exe │ │ │ ├── Constructors.pdb │ │ │ └── Constructors.runtimeconfig.json │ └── obj │ │ ├── Constructors.csproj.nuget.dgspec.json │ │ ├── Constructors.csproj.nuget.g.props │ │ ├── Constructors.csproj.nuget.g.targets │ │ ├── Debug │ │ └── net6.0 │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ ├── Constructors.AssemblyInfo.cs │ │ │ ├── Constructors.AssemblyInfoInputs.cache │ │ │ ├── Constructors.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── Constructors.GlobalUsings.g.cs │ │ │ ├── Constructors.assets.cache │ │ │ ├── Constructors.csproj.AssemblyReference.cache │ │ │ ├── Constructors.csproj.BuildWithSkipAnalyzers │ │ │ ├── Constructors.csproj.CoreCompileInputs.cache │ │ │ ├── Constructors.csproj.FileListAbsolute.txt │ │ │ ├── Constructors.dll │ │ │ ├── Constructors.genruntimeconfig.cache │ │ │ ├── Constructors.pdb │ │ │ ├── _IsIncrementalBuild │ │ │ ├── apphost.exe │ │ │ ├── ref │ │ │ └── Constructors.dll │ │ │ └── refint │ │ │ └── Constructors.dll │ │ ├── project.assets.json │ │ └── project.nuget.cache │ ├── CounterStrike │ ├── .vs │ │ └── CounterStrike │ │ │ ├── DesignTimeBuild │ │ │ └── .dtbcache.v2 │ │ │ ├── FileContentIndex │ │ │ ├── 56ba93ec-5b40-4f0b-88e6-2d7ad9a893b6.vsidx │ │ │ ├── 6f8da0de-9d61-4737-8e65-0a10b079d41c.vsidx │ │ │ └── read.lock │ │ │ └── v17 │ │ │ └── .suo │ ├── CounterStrike.sln │ └── CounterStrike │ │ ├── CounterStrike.csproj │ │ ├── Oyuncu.cs │ │ ├── Program.cs │ │ ├── Silah.cs │ │ ├── bin │ │ └── Debug │ │ │ └── net6.0 │ │ │ ├── CounterStrike.deps.json │ │ │ ├── CounterStrike.dll │ │ │ ├── CounterStrike.exe │ │ │ ├── CounterStrike.pdb │ │ │ └── CounterStrike.runtimeconfig.json │ │ └── obj │ │ ├── CounterStrike.csproj.nuget.dgspec.json │ │ ├── CounterStrike.csproj.nuget.g.props │ │ ├── CounterStrike.csproj.nuget.g.targets │ │ ├── Debug │ │ └── net6.0 │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ ├── CounterStrike.AssemblyInfo.cs │ │ │ ├── CounterStrike.AssemblyInfoInputs.cache │ │ │ ├── CounterStrike.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── CounterStrike.GlobalUsings.g.cs │ │ │ ├── CounterStrike.assets.cache │ │ │ ├── CounterStrike.csproj.AssemblyReference.cache │ │ │ ├── CounterStrike.csproj.BuildWithSkipAnalyzers │ │ │ ├── CounterStrike.csproj.CoreCompileInputs.cache │ │ │ ├── CounterStrike.csproj.FileListAbsolute.txt │ │ │ ├── CounterStrike.dll │ │ │ ├── CounterStrike.genruntimeconfig.cache │ │ │ ├── CounterStrike.pdb │ │ │ ├── _IsIncrementalBuild │ │ │ ├── apphost.exe │ │ │ ├── ref │ │ │ └── CounterStrike.dll │ │ │ └── refint │ │ │ └── CounterStrike.dll │ │ ├── project.assets.json │ │ └── project.nuget.cache │ ├── Encapsulation │ ├── Encapsulation.csproj │ ├── Otomobil.cs │ ├── Product.cs │ ├── Program.cs │ ├── bin │ │ └── Debug │ │ │ └── net6.0 │ │ │ ├── Encapsulation.deps.json │ │ │ ├── Encapsulation.dll │ │ │ ├── Encapsulation.exe │ │ │ ├── Encapsulation.pdb │ │ │ └── Encapsulation.runtimeconfig.json │ └── obj │ │ ├── Debug │ │ └── net6.0 │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ ├── Encapsulation.AssemblyInfo.cs │ │ │ ├── Encapsulation.AssemblyInfoInputs.cache │ │ │ ├── Encapsulation.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── Encapsulation.GlobalUsings.g.cs │ │ │ ├── Encapsulation.assets.cache │ │ │ ├── Encapsulation.csproj.AssemblyReference.cache │ │ │ ├── Encapsulation.csproj.BuildWithSkipAnalyzers │ │ │ ├── Encapsulation.csproj.CoreCompileInputs.cache │ │ │ ├── Encapsulation.csproj.FileListAbsolute.txt │ │ │ ├── Encapsulation.dll │ │ │ ├── Encapsulation.genruntimeconfig.cache │ │ │ ├── Encapsulation.pdb │ │ │ ├── _IsIncrementalBuild │ │ │ ├── apphost.exe │ │ │ ├── ref │ │ │ └── Encapsulation.dll │ │ │ └── refint │ │ │ └── Encapsulation.dll │ │ ├── Encapsulation.csproj.nuget.dgspec.json │ │ ├── Encapsulation.csproj.nuget.g.props │ │ ├── Encapsulation.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ └── project.nuget.cache │ ├── OOPOverview.sln │ ├── Polymorphism │ ├── Asci.cs │ ├── Polymorphism.csproj │ ├── Program.cs │ ├── Yemek.cs │ ├── bin │ │ └── Debug │ │ │ └── net6.0 │ │ │ ├── Polymorphism.deps.json │ │ │ ├── Polymorphism.dll │ │ │ ├── Polymorphism.exe │ │ │ ├── Polymorphism.pdb │ │ │ └── Polymorphism.runtimeconfig.json │ └── obj │ │ ├── Debug │ │ └── net6.0 │ │ │ ├── .NETCoreApp,Version=v6.0.AssemblyAttributes.cs │ │ │ ├── Polymorphism.AssemblyInfo.cs │ │ │ ├── Polymorphism.AssemblyInfoInputs.cache │ │ │ ├── Polymorphism.GeneratedMSBuildEditorConfig.editorconfig │ │ │ ├── Polymorphism.GlobalUsings.g.cs │ │ │ ├── Polymorphism.assets.cache │ │ │ ├── Polymorphism.csproj.AssemblyReference.cache │ │ │ ├── Polymorphism.csproj.BuildWithSkipAnalyzers │ │ │ ├── Polymorphism.csproj.CoreCompileInputs.cache │ │ │ ├── Polymorphism.csproj.FileListAbsolute.txt │ │ │ ├── Polymorphism.dll │ │ │ ├── Polymorphism.genruntimeconfig.cache │ │ │ ├── Polymorphism.pdb │ │ │ ├── _IsIncrementalBuild │ │ │ ├── apphost.exe │ │ │ ├── ref │ │ │ └── Polymorphism.dll │ │ │ └── refint │ │ │ └── Polymorphism.dll │ │ ├── Polymorphism.csproj.nuget.dgspec.json │ │ ├── Polymorphism.csproj.nuget.g.props │ │ ├── Polymorphism.csproj.nuget.g.targets │ │ ├── project.assets.json │ │ └── project.nuget.cache │ └── SOLID │ ├── DependencyInversion │ ├── DependencyInversion.csproj │ ├── Program.cs │ └── Reporter.cs │ ├── InterfaceSegregation │ ├── IRepository.cs │ ├── InterfaceSegregation.csproj │ └── Program.cs │ ├── LiskovSubstution │ ├── GeometryLibrary.cs │ ├── LiskovSubstution.csproj │ └── Program.cs │ ├── OpenClosed │ ├── OpenClosed.csproj │ └── Program.cs │ ├── SOLID.sln │ └── SingleResponsibility │ ├── DataAccess.cs │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── ProductService.cs │ ├── Program.cs │ └── SingleResponsibility.csproj ├── EF CORE ├── DbFirstSample │ ├── DbFirstSample.sln │ └── DbFirstSample │ │ ├── Data │ │ └── NorthwindContext.cs │ │ ├── DbFirstSample.csproj │ │ ├── Models │ │ ├── AktifUrunler.cs │ │ ├── AlphabeticalListOfProduct.cs │ │ ├── Category.cs │ │ ├── CategorySales1996.cs │ │ ├── CategorySalesFor1997.cs │ │ ├── CurrentProductList.cs │ │ ├── Customer.cs │ │ ├── CustomerAndSuppliersByCity.cs │ │ ├── CustomerDemographic.cs │ │ ├── DetailedOrder.cs │ │ ├── Employee.cs │ │ ├── Invoice.cs │ │ ├── KategoriMenusu.cs │ │ ├── Order.cs │ │ ├── OrderDetail.cs │ │ ├── OrderDetailsExtended.cs │ │ ├── OrderSubtotal.cs │ │ ├── OrdersQry.cs │ │ ├── Product.cs │ │ ├── ProductSalesFor1997.cs │ │ ├── ProductsAboveAveragePrice.cs │ │ ├── ProductsByCategory.cs │ │ ├── QuarterlyOrder.cs │ │ ├── Region.cs │ │ ├── SalesByCategory.cs │ │ ├── SalesTotalsByAmount.cs │ │ ├── Shipper.cs │ │ ├── SummaryOfSalesByQuarter.cs │ │ ├── SummaryOfSalesByYear.cs │ │ ├── Supplier.cs │ │ └── Territory.cs │ │ └── Program.cs ├── Movies │ ├── Movies.Application │ │ ├── Class1.cs │ │ ├── DTOs │ │ │ ├── Requests │ │ │ │ ├── CreateDirectorRequest.cs │ │ │ │ ├── CreateNewMovieRequest.cs │ │ │ │ ├── CreateNewPlayerRequest.cs │ │ │ │ ├── UpdateDirectorRequest.cs │ │ │ │ ├── UpdateMovieRequest.cs │ │ │ │ └── UpdatePlayerRequest.cs │ │ │ └── Responses │ │ │ │ ├── DirectorListResponse.cs │ │ │ │ ├── MovieListResponse.cs │ │ │ │ ├── PlayerListResponse.cs │ │ │ │ └── SingleDirectorResponse.cs │ │ ├── DirectorService.cs │ │ ├── IDirectorService.cs │ │ ├── IMovieService.cs │ │ ├── IPlayerService.cs │ │ ├── MovieService.cs │ │ ├── Movies.Application.csproj │ │ └── PlayerService.cs │ ├── Movies.Data │ │ ├── Class1.cs │ │ ├── Data │ │ │ └── MoviesDbContext.cs │ │ ├── Migrations │ │ │ ├── 20230504180207_init.Designer.cs │ │ │ ├── 20230504180207_init.cs │ │ │ ├── 20230511195735_changeToNullable.Designer.cs │ │ │ ├── 20230511195735_changeToNullable.cs │ │ │ └── MoviesDbContextModelSnapshot.cs │ │ ├── Movies.Data.csproj │ │ └── Repositories │ │ │ ├── EFDirectorRepository.cs │ │ │ ├── EFMovieRepository.cs │ │ │ ├── EFPlayerRepository.cs │ │ │ ├── IDirectorRepository.cs │ │ │ ├── IMovieRepository.cs │ │ │ ├── IPlayerRepository.cs │ │ │ ├── IRepository.cs │ │ │ └── SingletonRepository.cs │ ├── Movies.Entities │ │ ├── Class1.cs │ │ ├── Director.cs │ │ ├── IEntity.cs │ │ ├── Movie.cs │ │ ├── Movies.Entities.csproj │ │ ├── MoviesPlayer.cs │ │ ├── Player.cs │ │ └── SingletonEntity.cs │ ├── Movies.WinForms │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── FormDirectors.Designer.cs │ │ ├── FormDirectors.cs │ │ ├── FormDirectors.resx │ │ ├── FormMovies.Designer.cs │ │ ├── FormMovies.cs │ │ ├── FormMovies.resx │ │ ├── FormPlayers.Designer.cs │ │ ├── FormPlayers.cs │ │ ├── FormPlayers.resx │ │ ├── Movies.WinForms.csproj │ │ └── Program.cs │ └── Movies.sln └── introduceEFCore │ ├── introduceEFCore.sln │ └── introduceEFCore │ ├── Data │ └── BookStoreDbContext.cs │ ├── Migrations │ ├── 20230502172510_init.Designer.cs │ ├── 20230502172510_init.cs │ ├── 20230502174352_changeNullable.Designer.cs │ ├── 20230502174352_changeNullable.cs │ ├── 20230502174449_changeNullableTwo.Designer.cs │ ├── 20230502174449_changeNullableTwo.cs │ ├── 20230502174931_many_to_many.Designer.cs │ ├── 20230502174931_many_to_many.cs │ └── BookStoreDbContextModelSnapshot.cs │ ├── Models │ ├── Author.cs │ ├── Book.cs │ └── Review.cs │ ├── Program.cs │ └── introduceEFCore.csproj ├── HTML-CSS-JS ├── Bootstrap │ ├── .vscode │ │ └── settings.json │ └── index.html ├── Html5AndNext │ ├── 1_Animasyon.html │ ├── 2_Animasyon.html │ ├── 3_Transition.html │ ├── 4_Shadow.html │ ├── forms.html │ ├── grid.html │ ├── images │ │ └── tisort.jpg │ ├── index.html │ ├── media.html │ └── media │ │ ├── audios │ │ └── Sertap Erener - Ruya.MP3 │ │ └── videos │ │ ├── samplevideo.mp4 │ │ ├── samplevideo.ogv │ │ └── samplevideo.webm ├── IntroHtml │ ├── images │ │ └── ucurtma.jpg │ ├── index.html │ ├── info.html │ ├── introCss.html │ ├── layout.html │ ├── mockup.drawio │ └── styles │ │ ├── layout.css │ │ └── style.css └── usingJavaScript │ ├── callbacks.js │ ├── events.html │ ├── fetching.html │ ├── index.html │ ├── oop.html │ ├── swFetch.js │ ├── validate.js │ └── validation.html └── T-SQL ├── dbScript.sql └── queries.sql /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/.gitignore -------------------------------------------------------------------------------- /ASP.NET/CourseApp/CourseApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/CourseApp.sln -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/Application/CourseApp.DataTransferObjects/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/Application/CourseApp.DataTransferObjects/Class1.cs -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/Application/CourseApp.Services/CategoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/Application/CourseApp.Services/CategoryService.cs -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/Application/CourseApp.Services/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/Application/CourseApp.Services/Class1.cs -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/Application/CourseApp.Services/CourseApp.Services.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/Application/CourseApp.Services/CourseApp.Services.csproj -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/Application/CourseApp.Services/CourseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/Application/CourseApp.Services/CourseService.cs -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/Application/CourseApp.Services/ICategoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/Application/CourseApp.Services/ICategoryService.cs -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/Application/CourseApp.Services/ICourseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/Application/CourseApp.Services/ICourseService.cs -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/Application/CourseApp.Services/IUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/Application/CourseApp.Services/IUserService.cs -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/Application/CourseApp.Services/Mappings/MapProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/Application/CourseApp.Services/Mappings/MapProfile.cs -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/Application/CourseApp.Services/UserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/Application/CourseApp.Services/UserService.cs -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/Domain/CourseApp.Entities/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/Domain/CourseApp.Entities/Category.cs -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/Domain/CourseApp.Entities/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/Domain/CourseApp.Entities/Class1.cs -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/Domain/CourseApp.Entities/Course.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/Domain/CourseApp.Entities/Course.cs -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/Domain/CourseApp.Entities/CourseApp.Entities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/Domain/CourseApp.Entities/CourseApp.Entities.csproj -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/Domain/CourseApp.Entities/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/Domain/CourseApp.Entities/IEntity.cs -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/Domain/CourseApp.Entities/Participant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/Domain/CourseApp.Entities/Participant.cs -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/Domain/CourseApp.Entities/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/Domain/CourseApp.Entities/User.cs -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/Infrastructure/CourseApp.Infrastructure/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/Infrastructure/CourseApp.Infrastructure/Class1.cs -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/Infrastructure/CourseApp.Infrastructure/Data/DbSeeding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/Infrastructure/CourseApp.Infrastructure/Data/DbSeeding.cs -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/Web API/CourseApp.API/Controllers/CoursesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/Web API/CourseApp.API/Controllers/CoursesController.cs -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/Web API/CourseApp.API/CourseApp.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/Web API/CourseApp.API/CourseApp.API.csproj -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/Web API/CourseApp.API/Extensions/IoCExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/Web API/CourseApp.API/Extensions/IoCExtensions.cs -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/Web API/CourseApp.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/Web API/CourseApp.API/Program.cs -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/Web API/CourseApp.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/Web API/CourseApp.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/Web API/CourseApp.API/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/Web API/CourseApp.API/WeatherForecast.cs -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/Web API/CourseApp.API/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/Web API/CourseApp.API/appsettings.Development.json -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/Web API/CourseApp.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/Web API/CourseApp.API/appsettings.json -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/CacheTools/CacheDataInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/CacheTools/CacheDataInfo.cs -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Controllers/CoursesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Controllers/CoursesController.cs -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Controllers/HomeController.cs -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Controllers/ShoppingController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Controllers/ShoppingController.cs -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Controllers/UsersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Controllers/UsersController.cs -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/CourseApp.Mvc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/CourseApp.Mvc.csproj -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Extensions/IoCExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Extensions/IoCExtensions.cs -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Extensions/SessionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Extensions/SessionExtensions.cs -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Models/CourseCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Models/CourseCollection.cs -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Models/PaginationCourseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Models/PaginationCourseViewModel.cs -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Models/PagingInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Models/PagingInfo.cs -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Models/UserLoginViewMdoel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Models/UserLoginViewMdoel.cs -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Program.cs -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Properties/launchSettings.json -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/TagBuilders/PageLinkBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/TagBuilders/PageLinkBuilder.cs -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/ViewComponents/MenuViewComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/ViewComponents/MenuViewComponent.cs -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Views/Courses/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Views/Courses/Create.cshtml -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Views/Courses/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Views/Courses/Edit.cshtml -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Views/Courses/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Views/Courses/Index.cshtml -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Views/Shared/_CourseDisplay.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Views/Shared/_CourseDisplay.cshtml -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Views/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Views/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Views/Shopping/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Views/Shopping/Index.cshtml -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Views/Users/AccessDenied.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Views/Users/AccessDenied.cshtml -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Views/Users/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Views/Users/Login.cshtml -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/appsettings.Development.json -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/appsettings.json -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/libman.json -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/wwwroot/AlertifyJS/alertify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/wwwroot/AlertifyJS/alertify.min.js -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/wwwroot/css/site.css -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/wwwroot/favicon.ico -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/wwwroot/js/site.js -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CourseApp/src/webUI/CourseApp.Mvc/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /ASP.NET/CustomMiddlewares/CustomMiddlewares.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CustomMiddlewares/CustomMiddlewares.sln -------------------------------------------------------------------------------- /ASP.NET/CustomMiddlewares/CustomMiddlewares/CommentDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CustomMiddlewares/CustomMiddlewares/CommentDetail.cs -------------------------------------------------------------------------------- /ASP.NET/CustomMiddlewares/CustomMiddlewares/CustomMiddlewares.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CustomMiddlewares/CustomMiddlewares/CustomMiddlewares.csproj -------------------------------------------------------------------------------- /ASP.NET/CustomMiddlewares/CustomMiddlewares/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CustomMiddlewares/CustomMiddlewares/Program.cs -------------------------------------------------------------------------------- /ASP.NET/CustomMiddlewares/CustomMiddlewares/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CustomMiddlewares/CustomMiddlewares/Properties/launchSettings.json -------------------------------------------------------------------------------- /ASP.NET/CustomMiddlewares/CustomMiddlewares/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CustomMiddlewares/CustomMiddlewares/WeatherForecast.cs -------------------------------------------------------------------------------- /ASP.NET/CustomMiddlewares/CustomMiddlewares/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CustomMiddlewares/CustomMiddlewares/appsettings.Development.json -------------------------------------------------------------------------------- /ASP.NET/CustomMiddlewares/CustomMiddlewares/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/CustomMiddlewares/CustomMiddlewares/appsettings.json -------------------------------------------------------------------------------- /ASP.NET/DILifeTime/DILifeTime.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/DILifeTime/DILifeTime.sln -------------------------------------------------------------------------------- /ASP.NET/DILifeTime/DILifeTime/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/DILifeTime/DILifeTime/Controllers/HomeController.cs -------------------------------------------------------------------------------- /ASP.NET/DILifeTime/DILifeTime/DILifeTime.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/DILifeTime/DILifeTime/DILifeTime.csproj -------------------------------------------------------------------------------- /ASP.NET/DILifeTime/DILifeTime/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/DILifeTime/DILifeTime/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /ASP.NET/DILifeTime/DILifeTime/Models/IGuidGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/DILifeTime/DILifeTime/Models/IGuidGenerator.cs -------------------------------------------------------------------------------- /ASP.NET/DILifeTime/DILifeTime/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/DILifeTime/DILifeTime/Program.cs -------------------------------------------------------------------------------- /ASP.NET/DILifeTime/DILifeTime/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/DILifeTime/DILifeTime/Properties/launchSettings.json -------------------------------------------------------------------------------- /ASP.NET/DILifeTime/DILifeTime/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/DILifeTime/DILifeTime/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /ASP.NET/DILifeTime/DILifeTime/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/DILifeTime/DILifeTime/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /ASP.NET/DILifeTime/DILifeTime/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/DILifeTime/DILifeTime/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /ASP.NET/DILifeTime/DILifeTime/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/DILifeTime/DILifeTime/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /ASP.NET/DILifeTime/DILifeTime/Views/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/DILifeTime/DILifeTime/Views/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /ASP.NET/DILifeTime/DILifeTime/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/DILifeTime/DILifeTime/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /ASP.NET/DILifeTime/DILifeTime/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/DILifeTime/DILifeTime/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /ASP.NET/DILifeTime/DILifeTime/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/DILifeTime/DILifeTime/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /ASP.NET/DILifeTime/DILifeTime/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/DILifeTime/DILifeTime/appsettings.Development.json -------------------------------------------------------------------------------- /ASP.NET/DILifeTime/DILifeTime/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/DILifeTime/DILifeTime/appsettings.json -------------------------------------------------------------------------------- /ASP.NET/DILifeTime/DILifeTime/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/DILifeTime/DILifeTime/wwwroot/css/site.css -------------------------------------------------------------------------------- /ASP.NET/DILifeTime/DILifeTime/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/DILifeTime/DILifeTime/wwwroot/favicon.ico -------------------------------------------------------------------------------- /ASP.NET/DILifeTime/DILifeTime/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/DILifeTime/DILifeTime/wwwroot/js/site.js -------------------------------------------------------------------------------- /ASP.NET/DILifeTime/DILifeTime/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/DILifeTime/DILifeTime/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /ASP.NET/DILifeTime/DILifeTime/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/DILifeTime/DILifeTime/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /ASP.NET/DILifeTime/DILifeTime/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/DILifeTime/DILifeTime/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js -------------------------------------------------------------------------------- /ASP.NET/DILifeTime/DILifeTime/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/DILifeTime/DILifeTime/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /ASP.NET/DILifeTime/DILifeTime/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/DILifeTime/DILifeTime/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /ASP.NET/DILifeTime/DILifeTime/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/DILifeTime/DILifeTime/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /ASP.NET/DILifeTime/DILifeTime/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/DILifeTime/DILifeTime/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /ASP.NET/DILifeTime/DILifeTime/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/DILifeTime/DILifeTime/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /ASP.NET/DILifeTime/DILifeTime/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/DILifeTime/DILifeTime/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /ASP.NET/DILifeTime/DILifeTime/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/DILifeTime/DILifeTime/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /ASP.NET/DILifeTime/DILifeTime/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/DILifeTime/DILifeTime/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /ASP.NET/FirstMVCApp/FirstMVCApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/FirstMVCApp/FirstMVCApp.sln -------------------------------------------------------------------------------- /ASP.NET/FirstMVCApp/FirstMVCApp/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/FirstMVCApp/FirstMVCApp/Controllers/HomeController.cs -------------------------------------------------------------------------------- /ASP.NET/FirstMVCApp/FirstMVCApp/FirstMVCApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/FirstMVCApp/FirstMVCApp/FirstMVCApp.csproj -------------------------------------------------------------------------------- /ASP.NET/FirstMVCApp/FirstMVCApp/Models/Privacy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/FirstMVCApp/FirstMVCApp/Models/Privacy.cs -------------------------------------------------------------------------------- /ASP.NET/FirstMVCApp/FirstMVCApp/Models/UserRegisterModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/FirstMVCApp/FirstMVCApp/Models/UserRegisterModel.cs -------------------------------------------------------------------------------- /ASP.NET/FirstMVCApp/FirstMVCApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/FirstMVCApp/FirstMVCApp/Program.cs -------------------------------------------------------------------------------- /ASP.NET/FirstMVCApp/FirstMVCApp/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/FirstMVCApp/FirstMVCApp/Properties/launchSettings.json -------------------------------------------------------------------------------- /ASP.NET/FirstMVCApp/FirstMVCApp/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/FirstMVCApp/FirstMVCApp/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /ASP.NET/FirstMVCApp/FirstMVCApp/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/FirstMVCApp/FirstMVCApp/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /ASP.NET/FirstMVCApp/FirstMVCApp/Views/Home/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/FirstMVCApp/FirstMVCApp/Views/Home/Register.cshtml -------------------------------------------------------------------------------- /ASP.NET/FirstMVCApp/FirstMVCApp/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/FirstMVCApp/FirstMVCApp/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /ASP.NET/FirstMVCApp/FirstMVCApp/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/FirstMVCApp/FirstMVCApp/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /ASP.NET/FirstMVCApp/FirstMVCApp/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/FirstMVCApp/FirstMVCApp/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /ASP.NET/FirstMVCApp/FirstMVCApp/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/FirstMVCApp/FirstMVCApp/appsettings.Development.json -------------------------------------------------------------------------------- /ASP.NET/FirstMVCApp/FirstMVCApp/appsettings.Production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/FirstMVCApp/FirstMVCApp/appsettings.Production.json -------------------------------------------------------------------------------- /ASP.NET/FirstMVCApp/FirstMVCApp/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/FirstMVCApp/FirstMVCApp/appsettings.json -------------------------------------------------------------------------------- /ASP.NET/FirstMVCApp/FirstMVCApp/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/FirstMVCApp/FirstMVCApp/libman.json -------------------------------------------------------------------------------- /ASP.NET/FirstMVCApp/FirstMVCApp/wwwroot/lib/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/FirstMVCApp/FirstMVCApp/wwwroot/lib/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /ASP.NET/IdentityScaffold/IdentityScaffold.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/IdentityScaffold/IdentityScaffold.sln -------------------------------------------------------------------------------- /ASP.NET/IdentityScaffold/IdentityScaffold/Areas/Identity/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/IdentityScaffold/IdentityScaffold/Areas/Identity/Pages/Error.cshtml -------------------------------------------------------------------------------- /ASP.NET/IdentityScaffold/IdentityScaffold/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/IdentityScaffold/IdentityScaffold/Controllers/HomeController.cs -------------------------------------------------------------------------------- /ASP.NET/IdentityScaffold/IdentityScaffold/Data/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/IdentityScaffold/IdentityScaffold/Data/ApplicationDbContext.cs -------------------------------------------------------------------------------- /ASP.NET/IdentityScaffold/IdentityScaffold/IdentityScaffold.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/IdentityScaffold/IdentityScaffold/IdentityScaffold.csproj -------------------------------------------------------------------------------- /ASP.NET/IdentityScaffold/IdentityScaffold/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/IdentityScaffold/IdentityScaffold/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /ASP.NET/IdentityScaffold/IdentityScaffold/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/IdentityScaffold/IdentityScaffold/Program.cs -------------------------------------------------------------------------------- /ASP.NET/IdentityScaffold/IdentityScaffold/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/IdentityScaffold/IdentityScaffold/Properties/launchSettings.json -------------------------------------------------------------------------------- /ASP.NET/IdentityScaffold/IdentityScaffold/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/IdentityScaffold/IdentityScaffold/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /ASP.NET/IdentityScaffold/IdentityScaffold/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/IdentityScaffold/IdentityScaffold/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /ASP.NET/IdentityScaffold/IdentityScaffold/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/IdentityScaffold/IdentityScaffold/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /ASP.NET/IdentityScaffold/IdentityScaffold/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/IdentityScaffold/IdentityScaffold/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /ASP.NET/IdentityScaffold/IdentityScaffold/Views/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/IdentityScaffold/IdentityScaffold/Views/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /ASP.NET/IdentityScaffold/IdentityScaffold/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/IdentityScaffold/IdentityScaffold/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /ASP.NET/IdentityScaffold/IdentityScaffold/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/IdentityScaffold/IdentityScaffold/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /ASP.NET/IdentityScaffold/IdentityScaffold/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/IdentityScaffold/IdentityScaffold/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /ASP.NET/IdentityScaffold/IdentityScaffold/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/IdentityScaffold/IdentityScaffold/appsettings.Development.json -------------------------------------------------------------------------------- /ASP.NET/IdentityScaffold/IdentityScaffold/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/IdentityScaffold/IdentityScaffold/appsettings.json -------------------------------------------------------------------------------- /ASP.NET/IdentityScaffold/IdentityScaffold/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/IdentityScaffold/IdentityScaffold/wwwroot/css/site.css -------------------------------------------------------------------------------- /ASP.NET/IdentityScaffold/IdentityScaffold/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/IdentityScaffold/IdentityScaffold/wwwroot/favicon.ico -------------------------------------------------------------------------------- /ASP.NET/IdentityScaffold/IdentityScaffold/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/IdentityScaffold/IdentityScaffold/wwwroot/js/site.js -------------------------------------------------------------------------------- /ASP.NET/IdentityScaffold/IdentityScaffold/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/IdentityScaffold/IdentityScaffold/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /ASP.NET/IdentityScaffold/IdentityScaffold/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/IdentityScaffold/IdentityScaffold/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /ASP.NET/IdentityScaffold/IdentityScaffold/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/ASP.NET/IdentityScaffold/IdentityScaffold/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /C#/AdvancedFeatures/DelegatesAndEvents/DelegatesAndEvents.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/AdvancedFeatures/DelegatesAndEvents/DelegatesAndEvents.sln -------------------------------------------------------------------------------- /C#/AdvancedFeatures/DelegatesAndEvents/Events/Events.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/AdvancedFeatures/DelegatesAndEvents/Events/Events.csproj -------------------------------------------------------------------------------- /C#/AdvancedFeatures/DelegatesAndEvents/Events/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/AdvancedFeatures/DelegatesAndEvents/Events/Form1.Designer.cs -------------------------------------------------------------------------------- /C#/AdvancedFeatures/DelegatesAndEvents/Events/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/AdvancedFeatures/DelegatesAndEvents/Events/Form1.cs -------------------------------------------------------------------------------- /C#/AdvancedFeatures/DelegatesAndEvents/Events/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/AdvancedFeatures/DelegatesAndEvents/Events/Form1.resx -------------------------------------------------------------------------------- /C#/AdvancedFeatures/DelegatesAndEvents/Events/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/AdvancedFeatures/DelegatesAndEvents/Events/Program.cs -------------------------------------------------------------------------------- /C#/AdvancedFeatures/DelegatesAndEvents/Events/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/AdvancedFeatures/DelegatesAndEvents/Events/User.cs -------------------------------------------------------------------------------- /C#/AdvancedFeatures/DelegatesAndEvents/usingDelegates/FilterHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/AdvancedFeatures/DelegatesAndEvents/usingDelegates/FilterHelper.cs -------------------------------------------------------------------------------- /C#/AdvancedFeatures/DelegatesAndEvents/usingDelegates/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/AdvancedFeatures/DelegatesAndEvents/usingDelegates/Program.cs -------------------------------------------------------------------------------- /C#/AdvancedFeatures/DelegatesAndEvents/usingDelegates/usingDelegates.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/AdvancedFeatures/DelegatesAndEvents/usingDelegates/usingDelegates.csproj -------------------------------------------------------------------------------- /C#/AdvancedFeatures/LINQ/ExtensionMethods/BaskaBirClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/AdvancedFeatures/LINQ/ExtensionMethods/BaskaBirClass.cs -------------------------------------------------------------------------------- /C#/AdvancedFeatures/LINQ/ExtensionMethods/ExtensionMethods.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/AdvancedFeatures/LINQ/ExtensionMethods/ExtensionMethods.csproj -------------------------------------------------------------------------------- /C#/AdvancedFeatures/LINQ/ExtensionMethods/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/AdvancedFeatures/LINQ/ExtensionMethods/Extensions.cs -------------------------------------------------------------------------------- /C#/AdvancedFeatures/LINQ/ExtensionMethods/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/AdvancedFeatures/LINQ/ExtensionMethods/Program.cs -------------------------------------------------------------------------------- /C#/AdvancedFeatures/LINQ/LINQ.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/AdvancedFeatures/LINQ/LINQ.sln -------------------------------------------------------------------------------- /C#/AdvancedFeatures/LINQ/LinqIntro/LinqIntro.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/AdvancedFeatures/LINQ/LinqIntro/LinqIntro.csproj -------------------------------------------------------------------------------- /C#/AdvancedFeatures/LINQ/LinqIntro/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/AdvancedFeatures/LINQ/LinqIntro/Product.cs -------------------------------------------------------------------------------- /C#/AdvancedFeatures/LINQ/LinqIntro/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/AdvancedFeatures/LINQ/LinqIntro/Program.cs -------------------------------------------------------------------------------- /C#/AdvancedFeatures/MultiThreading/MultiThreading.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/AdvancedFeatures/MultiThreading/MultiThreading.sln -------------------------------------------------------------------------------- /C#/AdvancedFeatures/MultiThreading/basicThread/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/AdvancedFeatures/MultiThreading/basicThread/Form1.Designer.cs -------------------------------------------------------------------------------- /C#/AdvancedFeatures/MultiThreading/basicThread/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/AdvancedFeatures/MultiThreading/basicThread/Form1.cs -------------------------------------------------------------------------------- /C#/AdvancedFeatures/MultiThreading/basicThread/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/AdvancedFeatures/MultiThreading/basicThread/Form1.resx -------------------------------------------------------------------------------- /C#/AdvancedFeatures/MultiThreading/basicThread/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/AdvancedFeatures/MultiThreading/basicThread/Program.cs -------------------------------------------------------------------------------- /C#/AdvancedFeatures/MultiThreading/basicThread/basicThread.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/AdvancedFeatures/MultiThreading/basicThread/basicThread.csproj -------------------------------------------------------------------------------- /C#/AdvancedFeatures/MultiThreading/taskMechanism/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/AdvancedFeatures/MultiThreading/taskMechanism/Form1.Designer.cs -------------------------------------------------------------------------------- /C#/AdvancedFeatures/MultiThreading/taskMechanism/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/AdvancedFeatures/MultiThreading/taskMechanism/Form1.cs -------------------------------------------------------------------------------- /C#/AdvancedFeatures/MultiThreading/taskMechanism/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/AdvancedFeatures/MultiThreading/taskMechanism/Form1.resx -------------------------------------------------------------------------------- /C#/AdvancedFeatures/MultiThreading/taskMechanism/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/AdvancedFeatures/MultiThreading/taskMechanism/Program.cs -------------------------------------------------------------------------------- /C#/AdvancedFeatures/MultiThreading/taskMechanism/taskMechanism.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/AdvancedFeatures/MultiThreading/taskMechanism/taskMechanism.csproj -------------------------------------------------------------------------------- /C#/Basics/Arrays/.vs/Arrays/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/Arrays/.vs/Arrays/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /C#/Basics/Arrays/.vs/Arrays/FileContentIndex/read.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C#/Basics/Arrays/.vs/Arrays/v17/.futdcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/Arrays/.vs/Arrays/v17/.futdcache.v2 -------------------------------------------------------------------------------- /C#/Basics/Arrays/.vs/Arrays/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/Arrays/.vs/Arrays/v17/.suo -------------------------------------------------------------------------------- /C#/Basics/Arrays/.vs/ProjectEvaluation/arrays.metadata.v5.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/Arrays/.vs/ProjectEvaluation/arrays.metadata.v5.2 -------------------------------------------------------------------------------- /C#/Basics/Arrays/.vs/ProjectEvaluation/arrays.projects.v5.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/Arrays/.vs/ProjectEvaluation/arrays.projects.v5.2 -------------------------------------------------------------------------------- /C#/Basics/Arrays/Arrays.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/Arrays/Arrays.sln -------------------------------------------------------------------------------- /C#/Basics/Arrays/Arrays/Arrays.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/Arrays/Arrays/Arrays.csproj -------------------------------------------------------------------------------- /C#/Basics/Arrays/Arrays/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/Arrays/Arrays/Program.cs -------------------------------------------------------------------------------- /C#/Basics/Arrays/Arrays/bin/Debug/net6.0/Arrays.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/Arrays/Arrays/bin/Debug/net6.0/Arrays.deps.json -------------------------------------------------------------------------------- /C#/Basics/Arrays/Arrays/bin/Debug/net6.0/Arrays.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/Arrays/Arrays/bin/Debug/net6.0/Arrays.dll -------------------------------------------------------------------------------- /C#/Basics/Arrays/Arrays/bin/Debug/net6.0/Arrays.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/Arrays/Arrays/bin/Debug/net6.0/Arrays.exe -------------------------------------------------------------------------------- /C#/Basics/Arrays/Arrays/bin/Debug/net6.0/Arrays.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/Arrays/Arrays/bin/Debug/net6.0/Arrays.pdb -------------------------------------------------------------------------------- /C#/Basics/Arrays/Arrays/bin/Debug/net6.0/Arrays.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/Arrays/Arrays/bin/Debug/net6.0/Arrays.runtimeconfig.json -------------------------------------------------------------------------------- /C#/Basics/Arrays/Arrays/obj/Arrays.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/Arrays/Arrays/obj/Arrays.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /C#/Basics/Arrays/Arrays/obj/Arrays.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/Arrays/Arrays/obj/Arrays.csproj.nuget.g.props -------------------------------------------------------------------------------- /C#/Basics/Arrays/Arrays/obj/Arrays.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/Arrays/Arrays/obj/Arrays.csproj.nuget.g.targets -------------------------------------------------------------------------------- /C#/Basics/Arrays/Arrays/obj/Debug/net6.0/Arrays.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/Arrays/Arrays/obj/Debug/net6.0/Arrays.AssemblyInfo.cs -------------------------------------------------------------------------------- /C#/Basics/Arrays/Arrays/obj/Debug/net6.0/Arrays.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 21c0ba7ac2d74f465199c25399ba2a5cd8da400b 2 | -------------------------------------------------------------------------------- /C#/Basics/Arrays/Arrays/obj/Debug/net6.0/Arrays.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/Arrays/Arrays/obj/Debug/net6.0/Arrays.GlobalUsings.g.cs -------------------------------------------------------------------------------- /C#/Basics/Arrays/Arrays/obj/Debug/net6.0/Arrays.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/Arrays/Arrays/obj/Debug/net6.0/Arrays.assets.cache -------------------------------------------------------------------------------- /C#/Basics/Arrays/Arrays/obj/Debug/net6.0/Arrays.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C#/Basics/Arrays/Arrays/obj/Debug/net6.0/Arrays.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6326d25da8672b62096980fe5409b7e1c955f888 2 | -------------------------------------------------------------------------------- /C#/Basics/Arrays/Arrays/obj/Debug/net6.0/Arrays.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/Arrays/Arrays/obj/Debug/net6.0/Arrays.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /C#/Basics/Arrays/Arrays/obj/Debug/net6.0/Arrays.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/Arrays/Arrays/obj/Debug/net6.0/Arrays.dll -------------------------------------------------------------------------------- /C#/Basics/Arrays/Arrays/obj/Debug/net6.0/Arrays.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 41234a9f4ad7a0c567853d9d95bce97a39b264ee 2 | -------------------------------------------------------------------------------- /C#/Basics/Arrays/Arrays/obj/Debug/net6.0/Arrays.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/Arrays/Arrays/obj/Debug/net6.0/Arrays.pdb -------------------------------------------------------------------------------- /C#/Basics/Arrays/Arrays/obj/Debug/net6.0/_IsIncrementalBuild: -------------------------------------------------------------------------------- 1 | obj\Debug\net6.0\\_IsIncrementalBuild 2 | -------------------------------------------------------------------------------- /C#/Basics/Arrays/Arrays/obj/Debug/net6.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/Arrays/Arrays/obj/Debug/net6.0/apphost.exe -------------------------------------------------------------------------------- /C#/Basics/Arrays/Arrays/obj/Debug/net6.0/ref/Arrays.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/Arrays/Arrays/obj/Debug/net6.0/ref/Arrays.dll -------------------------------------------------------------------------------- /C#/Basics/Arrays/Arrays/obj/Debug/net6.0/refint/Arrays.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/Arrays/Arrays/obj/Debug/net6.0/refint/Arrays.dll -------------------------------------------------------------------------------- /C#/Basics/Arrays/Arrays/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/Arrays/Arrays/obj/project.assets.json -------------------------------------------------------------------------------- /C#/Basics/Arrays/Arrays/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/Arrays/Arrays/obj/project.nuget.cache -------------------------------------------------------------------------------- /C#/Basics/BuiltInFunctions/.vs/BuiltInFunctions/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/BuiltInFunctions/.vs/BuiltInFunctions/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /C#/Basics/BuiltInFunctions/.vs/BuiltInFunctions/FileContentIndex/read.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C#/Basics/BuiltInFunctions/.vs/BuiltInFunctions/v17/.futdcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/BuiltInFunctions/.vs/BuiltInFunctions/v17/.futdcache.v2 -------------------------------------------------------------------------------- /C#/Basics/BuiltInFunctions/.vs/BuiltInFunctions/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/BuiltInFunctions/.vs/BuiltInFunctions/v17/.suo -------------------------------------------------------------------------------- /C#/Basics/BuiltInFunctions/BuiltInFunctions.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/BuiltInFunctions/BuiltInFunctions.sln -------------------------------------------------------------------------------- /C#/Basics/BuiltInFunctions/BuiltInFunctions/BuiltInFunctions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/BuiltInFunctions/BuiltInFunctions/BuiltInFunctions.csproj -------------------------------------------------------------------------------- /C#/Basics/BuiltInFunctions/BuiltInFunctions/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/BuiltInFunctions/BuiltInFunctions/Program.cs -------------------------------------------------------------------------------- /C#/Basics/BuiltInFunctions/BuiltInFunctions/obj/Debug/net6.0/BuiltInFunctions.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 6ad4b7465a69029cc7c5113849f83db5ba6a5719 2 | -------------------------------------------------------------------------------- /C#/Basics/BuiltInFunctions/BuiltInFunctions/obj/Debug/net6.0/BuiltInFunctions.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C#/Basics/BuiltInFunctions/BuiltInFunctions/obj/Debug/net6.0/BuiltInFunctions.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | db404aea41b86e9bcc091ca6ff2afdfadb088694 2 | -------------------------------------------------------------------------------- /C#/Basics/BuiltInFunctions/BuiltInFunctions/obj/Debug/net6.0/BuiltInFunctions.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | caccd146c12883409b868562c50dfcab3be2afd0 2 | -------------------------------------------------------------------------------- /C#/Basics/BuiltInFunctions/BuiltInFunctions/obj/Debug/net6.0/_IsIncrementalBuild: -------------------------------------------------------------------------------- 1 | obj\Debug\net6.0\\_IsIncrementalBuild 2 | -------------------------------------------------------------------------------- /C#/Basics/BuiltInFunctions/BuiltInFunctions/obj/Debug/net6.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/BuiltInFunctions/BuiltInFunctions/obj/Debug/net6.0/apphost.exe -------------------------------------------------------------------------------- /C#/Basics/BuiltInFunctions/BuiltInFunctions/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/BuiltInFunctions/BuiltInFunctions/obj/project.assets.json -------------------------------------------------------------------------------- /C#/Basics/BuiltInFunctions/BuiltInFunctions/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/BuiltInFunctions/BuiltInFunctions/obj/project.nuget.cache -------------------------------------------------------------------------------- /C#/Basics/KararYapilari_If/.vs/KararYapilari_If/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/KararYapilari_If/.vs/KararYapilari_If/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /C#/Basics/KararYapilari_If/.vs/KararYapilari_If/FileContentIndex/read.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C#/Basics/KararYapilari_If/.vs/KararYapilari_If/v17/.futdcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/KararYapilari_If/.vs/KararYapilari_If/v17/.futdcache.v2 -------------------------------------------------------------------------------- /C#/Basics/KararYapilari_If/.vs/KararYapilari_If/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/KararYapilari_If/.vs/KararYapilari_If/v17/.suo -------------------------------------------------------------------------------- /C#/Basics/KararYapilari_If/KararYapilari_If.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/KararYapilari_If/KararYapilari_If.sln -------------------------------------------------------------------------------- /C#/Basics/KararYapilari_If/KararYapilari_If/KararYapilari_If.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/KararYapilari_If/KararYapilari_If/KararYapilari_If.csproj -------------------------------------------------------------------------------- /C#/Basics/KararYapilari_If/KararYapilari_If/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/KararYapilari_If/KararYapilari_If/Program.cs -------------------------------------------------------------------------------- /C#/Basics/KararYapilari_If/KararYapilari_If/obj/Debug/net6.0/KararYapilari_If.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C#/Basics/KararYapilari_If/KararYapilari_If/obj/Debug/net6.0/KararYapilari_If.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 54c3589b34681465e4a0de638baf3f670cd0af4e 2 | -------------------------------------------------------------------------------- /C#/Basics/KararYapilari_If/KararYapilari_If/obj/Debug/net6.0/KararYapilari_If.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | a825b50f545fcf3ce61adcdaa313028f998ee66d 2 | -------------------------------------------------------------------------------- /C#/Basics/KararYapilari_If/KararYapilari_If/obj/Debug/net6.0/_IsIncrementalBuild: -------------------------------------------------------------------------------- 1 | obj\Debug\net6.0\\_IsIncrementalBuild 2 | -------------------------------------------------------------------------------- /C#/Basics/KararYapilari_If/KararYapilari_If/obj/Debug/net6.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/KararYapilari_If/KararYapilari_If/obj/Debug/net6.0/apphost.exe -------------------------------------------------------------------------------- /C#/Basics/KararYapilari_If/KararYapilari_If/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/KararYapilari_If/KararYapilari_If/obj/project.assets.json -------------------------------------------------------------------------------- /C#/Basics/KararYapilari_If/KararYapilari_If/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/KararYapilari_If/KararYapilari_If/obj/project.nuget.cache -------------------------------------------------------------------------------- /C#/Basics/MethodOverloading/.vs/MethodOverloading/FileContentIndex/read.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C#/Basics/MethodOverloading/.vs/MethodOverloading/v17/.futdcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/MethodOverloading/.vs/MethodOverloading/v17/.futdcache.v2 -------------------------------------------------------------------------------- /C#/Basics/MethodOverloading/.vs/MethodOverloading/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/MethodOverloading/.vs/MethodOverloading/v17/.suo -------------------------------------------------------------------------------- /C#/Basics/MethodOverloading/MethodOverloading.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/MethodOverloading/MethodOverloading.sln -------------------------------------------------------------------------------- /C#/Basics/MethodOverloading/MethodOverloading/MethodOverloading.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/MethodOverloading/MethodOverloading/MethodOverloading.csproj -------------------------------------------------------------------------------- /C#/Basics/MethodOverloading/MethodOverloading/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/MethodOverloading/MethodOverloading/Program.cs -------------------------------------------------------------------------------- /C#/Basics/MethodOverloading/MethodOverloading/obj/Debug/net6.0/MethodOverloading.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | b1234cd9269178255f5abc0d6b31c518159282cb 2 | -------------------------------------------------------------------------------- /C#/Basics/MethodOverloading/MethodOverloading/obj/Debug/net6.0/MethodOverloading.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6e35df1f0fa127b350072f9bbf711914bf636167 2 | -------------------------------------------------------------------------------- /C#/Basics/MethodOverloading/MethodOverloading/obj/Debug/net6.0/MethodOverloading.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | fd0ca7e10ed22cf8c0b8e185f89eae5ddb4ac772 2 | -------------------------------------------------------------------------------- /C#/Basics/MethodOverloading/MethodOverloading/obj/Debug/net6.0/_IsIncrementalBuild: -------------------------------------------------------------------------------- 1 | obj\Debug\net6.0\\_IsIncrementalBuild 2 | -------------------------------------------------------------------------------- /C#/Basics/MethodOverloading/MethodOverloading/obj/Debug/net6.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/MethodOverloading/MethodOverloading/obj/Debug/net6.0/apphost.exe -------------------------------------------------------------------------------- /C#/Basics/MethodOverloading/MethodOverloading/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/MethodOverloading/MethodOverloading/obj/project.assets.json -------------------------------------------------------------------------------- /C#/Basics/MethodOverloading/MethodOverloading/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/MethodOverloading/MethodOverloading/obj/project.nuget.cache -------------------------------------------------------------------------------- /C#/Basics/VariablesAndTypes/.vs/VariablesAndTypes/FileContentIndex/read.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C#/Basics/VariablesAndTypes/.vs/VariablesAndTypes/v17/.futdcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/VariablesAndTypes/.vs/VariablesAndTypes/v17/.futdcache.v2 -------------------------------------------------------------------------------- /C#/Basics/VariablesAndTypes/.vs/VariablesAndTypes/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/VariablesAndTypes/.vs/VariablesAndTypes/v17/.suo -------------------------------------------------------------------------------- /C#/Basics/VariablesAndTypes/VariablesAndTypes.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/VariablesAndTypes/VariablesAndTypes.sln -------------------------------------------------------------------------------- /C#/Basics/VariablesAndTypes/VariablesAndTypes/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/VariablesAndTypes/VariablesAndTypes/Program.cs -------------------------------------------------------------------------------- /C#/Basics/VariablesAndTypes/VariablesAndTypes/VariablesAndTypes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/VariablesAndTypes/VariablesAndTypes/VariablesAndTypes.csproj -------------------------------------------------------------------------------- /C#/Basics/VariablesAndTypes/VariablesAndTypes/obj/Debug/net6.0/VariablesAndTypes.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | ff7ab2e4a75fdd87c60b7eac85aae11107012ec3 2 | -------------------------------------------------------------------------------- /C#/Basics/VariablesAndTypes/VariablesAndTypes/obj/Debug/net6.0/VariablesAndTypes.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C#/Basics/VariablesAndTypes/VariablesAndTypes/obj/Debug/net6.0/VariablesAndTypes.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | ea8f05cfda3d70013a1d9a550b64df0d0c3dc04b 2 | -------------------------------------------------------------------------------- /C#/Basics/VariablesAndTypes/VariablesAndTypes/obj/Debug/net6.0/VariablesAndTypes.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 0f70c9ff2cc072cd720565e6e0630e6115cf30aa 2 | -------------------------------------------------------------------------------- /C#/Basics/VariablesAndTypes/VariablesAndTypes/obj/Debug/net6.0/_IsIncrementalBuild: -------------------------------------------------------------------------------- 1 | obj\Debug\net6.0\\_IsIncrementalBuild 2 | -------------------------------------------------------------------------------- /C#/Basics/VariablesAndTypes/VariablesAndTypes/obj/Debug/net6.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/VariablesAndTypes/VariablesAndTypes/obj/Debug/net6.0/apphost.exe -------------------------------------------------------------------------------- /C#/Basics/VariablesAndTypes/VariablesAndTypes/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/VariablesAndTypes/VariablesAndTypes/obj/project.assets.json -------------------------------------------------------------------------------- /C#/Basics/VariablesAndTypes/VariablesAndTypes/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/VariablesAndTypes/VariablesAndTypes/obj/project.nuget.cache -------------------------------------------------------------------------------- /C#/Basics/creatingFunctions/.vs/creatingFunctions/FileContentIndex/read.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C#/Basics/creatingFunctions/.vs/creatingFunctions/v17/.futdcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/creatingFunctions/.vs/creatingFunctions/v17/.futdcache.v2 -------------------------------------------------------------------------------- /C#/Basics/creatingFunctions/.vs/creatingFunctions/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/creatingFunctions/.vs/creatingFunctions/v17/.suo -------------------------------------------------------------------------------- /C#/Basics/creatingFunctions/creatingFunctions.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/creatingFunctions/creatingFunctions.sln -------------------------------------------------------------------------------- /C#/Basics/creatingFunctions/creatingFunctions/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/creatingFunctions/creatingFunctions/Program.cs -------------------------------------------------------------------------------- /C#/Basics/creatingFunctions/creatingFunctions/creatingFunctions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/creatingFunctions/creatingFunctions/creatingFunctions.csproj -------------------------------------------------------------------------------- /C#/Basics/creatingFunctions/creatingFunctions/obj/Debug/net6.0/_IsIncrementalBuild: -------------------------------------------------------------------------------- 1 | obj\Debug\net6.0\\_IsIncrementalBuild 2 | -------------------------------------------------------------------------------- /C#/Basics/creatingFunctions/creatingFunctions/obj/Debug/net6.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/creatingFunctions/creatingFunctions/obj/Debug/net6.0/apphost.exe -------------------------------------------------------------------------------- /C#/Basics/creatingFunctions/creatingFunctions/obj/Debug/net6.0/creatingFunctions.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 6b9f422bfc75728408301dce5cce46b87249beeb 2 | -------------------------------------------------------------------------------- /C#/Basics/creatingFunctions/creatingFunctions/obj/Debug/net6.0/creatingFunctions.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C#/Basics/creatingFunctions/creatingFunctions/obj/Debug/net6.0/creatingFunctions.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 87ec6e9189ef9268d392c960d13eab1d331ded53 2 | -------------------------------------------------------------------------------- /C#/Basics/creatingFunctions/creatingFunctions/obj/Debug/net6.0/creatingFunctions.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 733c92f727fcb1f44f66593bba38fe66533e7e38 2 | -------------------------------------------------------------------------------- /C#/Basics/creatingFunctions/creatingFunctions/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/creatingFunctions/creatingFunctions/obj/project.assets.json -------------------------------------------------------------------------------- /C#/Basics/creatingFunctions/creatingFunctions/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/creatingFunctions/creatingFunctions/obj/project.nuget.cache -------------------------------------------------------------------------------- /C#/Basics/forEachLoop/.vs/ProjectEvaluation/foreachloop.metadata.v5.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forEachLoop/.vs/ProjectEvaluation/foreachloop.metadata.v5.2 -------------------------------------------------------------------------------- /C#/Basics/forEachLoop/.vs/ProjectEvaluation/foreachloop.projects.v5.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forEachLoop/.vs/ProjectEvaluation/foreachloop.projects.v5.2 -------------------------------------------------------------------------------- /C#/Basics/forEachLoop/.vs/forEachLoop/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forEachLoop/.vs/forEachLoop/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /C#/Basics/forEachLoop/.vs/forEachLoop/FileContentIndex/read.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C#/Basics/forEachLoop/.vs/forEachLoop/v17/.futdcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forEachLoop/.vs/forEachLoop/v17/.futdcache.v2 -------------------------------------------------------------------------------- /C#/Basics/forEachLoop/.vs/forEachLoop/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forEachLoop/.vs/forEachLoop/v17/.suo -------------------------------------------------------------------------------- /C#/Basics/forEachLoop/forEachLoop.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forEachLoop/forEachLoop.sln -------------------------------------------------------------------------------- /C#/Basics/forEachLoop/forEachLoop/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forEachLoop/forEachLoop/Program.cs -------------------------------------------------------------------------------- /C#/Basics/forEachLoop/forEachLoop/bin/Debug/net6.0/forEachLoop.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forEachLoop/forEachLoop/bin/Debug/net6.0/forEachLoop.deps.json -------------------------------------------------------------------------------- /C#/Basics/forEachLoop/forEachLoop/bin/Debug/net6.0/forEachLoop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forEachLoop/forEachLoop/bin/Debug/net6.0/forEachLoop.dll -------------------------------------------------------------------------------- /C#/Basics/forEachLoop/forEachLoop/bin/Debug/net6.0/forEachLoop.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forEachLoop/forEachLoop/bin/Debug/net6.0/forEachLoop.exe -------------------------------------------------------------------------------- /C#/Basics/forEachLoop/forEachLoop/bin/Debug/net6.0/forEachLoop.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forEachLoop/forEachLoop/bin/Debug/net6.0/forEachLoop.pdb -------------------------------------------------------------------------------- /C#/Basics/forEachLoop/forEachLoop/forEachLoop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forEachLoop/forEachLoop/forEachLoop.csproj -------------------------------------------------------------------------------- /C#/Basics/forEachLoop/forEachLoop/obj/Debug/net6.0/_IsIncrementalBuild: -------------------------------------------------------------------------------- 1 | obj\Debug\net6.0\\_IsIncrementalBuild 2 | -------------------------------------------------------------------------------- /C#/Basics/forEachLoop/forEachLoop/obj/Debug/net6.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forEachLoop/forEachLoop/obj/Debug/net6.0/apphost.exe -------------------------------------------------------------------------------- /C#/Basics/forEachLoop/forEachLoop/obj/Debug/net6.0/forEachLoop.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 4bbde473f3b6308fd43a69a6230e917595367a04 2 | -------------------------------------------------------------------------------- /C#/Basics/forEachLoop/forEachLoop/obj/Debug/net6.0/forEachLoop.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forEachLoop/forEachLoop/obj/Debug/net6.0/forEachLoop.assets.cache -------------------------------------------------------------------------------- /C#/Basics/forEachLoop/forEachLoop/obj/Debug/net6.0/forEachLoop.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C#/Basics/forEachLoop/forEachLoop/obj/Debug/net6.0/forEachLoop.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | afed0c64a9706740e9a120ba80231813f1c6724f 2 | -------------------------------------------------------------------------------- /C#/Basics/forEachLoop/forEachLoop/obj/Debug/net6.0/forEachLoop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forEachLoop/forEachLoop/obj/Debug/net6.0/forEachLoop.dll -------------------------------------------------------------------------------- /C#/Basics/forEachLoop/forEachLoop/obj/Debug/net6.0/forEachLoop.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 9d1ecc8fd4262e5c11fc2b8b44dfcca7d846e271 2 | -------------------------------------------------------------------------------- /C#/Basics/forEachLoop/forEachLoop/obj/Debug/net6.0/forEachLoop.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forEachLoop/forEachLoop/obj/Debug/net6.0/forEachLoop.pdb -------------------------------------------------------------------------------- /C#/Basics/forEachLoop/forEachLoop/obj/Debug/net6.0/ref/forEachLoop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forEachLoop/forEachLoop/obj/Debug/net6.0/ref/forEachLoop.dll -------------------------------------------------------------------------------- /C#/Basics/forEachLoop/forEachLoop/obj/Debug/net6.0/refint/forEachLoop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forEachLoop/forEachLoop/obj/Debug/net6.0/refint/forEachLoop.dll -------------------------------------------------------------------------------- /C#/Basics/forEachLoop/forEachLoop/obj/forEachLoop.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forEachLoop/forEachLoop/obj/forEachLoop.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /C#/Basics/forEachLoop/forEachLoop/obj/forEachLoop.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forEachLoop/forEachLoop/obj/forEachLoop.csproj.nuget.g.props -------------------------------------------------------------------------------- /C#/Basics/forEachLoop/forEachLoop/obj/forEachLoop.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forEachLoop/forEachLoop/obj/forEachLoop.csproj.nuget.g.targets -------------------------------------------------------------------------------- /C#/Basics/forEachLoop/forEachLoop/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forEachLoop/forEachLoop/obj/project.assets.json -------------------------------------------------------------------------------- /C#/Basics/forEachLoop/forEachLoop/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forEachLoop/forEachLoop/obj/project.nuget.cache -------------------------------------------------------------------------------- /C#/Basics/forLoop/.vs/forLoop/FileContentIndex/read.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C#/Basics/forLoop/.vs/forLoop/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forLoop/.vs/forLoop/v17/.suo -------------------------------------------------------------------------------- /C#/Basics/forLoop/forLoop.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forLoop/forLoop.sln -------------------------------------------------------------------------------- /C#/Basics/forLoop/forLoop/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forLoop/forLoop/Program.cs -------------------------------------------------------------------------------- /C#/Basics/forLoop/forLoop/bin/Debug/net6.0/forLoop.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forLoop/forLoop/bin/Debug/net6.0/forLoop.deps.json -------------------------------------------------------------------------------- /C#/Basics/forLoop/forLoop/bin/Debug/net6.0/forLoop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forLoop/forLoop/bin/Debug/net6.0/forLoop.dll -------------------------------------------------------------------------------- /C#/Basics/forLoop/forLoop/bin/Debug/net6.0/forLoop.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forLoop/forLoop/bin/Debug/net6.0/forLoop.exe -------------------------------------------------------------------------------- /C#/Basics/forLoop/forLoop/bin/Debug/net6.0/forLoop.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forLoop/forLoop/bin/Debug/net6.0/forLoop.pdb -------------------------------------------------------------------------------- /C#/Basics/forLoop/forLoop/bin/Debug/net6.0/forLoop.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forLoop/forLoop/bin/Debug/net6.0/forLoop.runtimeconfig.json -------------------------------------------------------------------------------- /C#/Basics/forLoop/forLoop/forLoop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forLoop/forLoop/forLoop.csproj -------------------------------------------------------------------------------- /C#/Basics/forLoop/forLoop/obj/Debug/net6.0/_IsIncrementalBuild: -------------------------------------------------------------------------------- 1 | obj\Debug\net6.0\\_IsIncrementalBuild 2 | -------------------------------------------------------------------------------- /C#/Basics/forLoop/forLoop/obj/Debug/net6.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forLoop/forLoop/obj/Debug/net6.0/apphost.exe -------------------------------------------------------------------------------- /C#/Basics/forLoop/forLoop/obj/Debug/net6.0/forLoop.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forLoop/forLoop/obj/Debug/net6.0/forLoop.AssemblyInfo.cs -------------------------------------------------------------------------------- /C#/Basics/forLoop/forLoop/obj/Debug/net6.0/forLoop.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forLoop/forLoop/obj/Debug/net6.0/forLoop.AssemblyInfoInputs.cache -------------------------------------------------------------------------------- /C#/Basics/forLoop/forLoop/obj/Debug/net6.0/forLoop.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forLoop/forLoop/obj/Debug/net6.0/forLoop.GlobalUsings.g.cs -------------------------------------------------------------------------------- /C#/Basics/forLoop/forLoop/obj/Debug/net6.0/forLoop.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forLoop/forLoop/obj/Debug/net6.0/forLoop.assets.cache -------------------------------------------------------------------------------- /C#/Basics/forLoop/forLoop/obj/Debug/net6.0/forLoop.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C#/Basics/forLoop/forLoop/obj/Debug/net6.0/forLoop.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 8f0dad12d2b23be30338218b9b8c10ab061078e8 2 | -------------------------------------------------------------------------------- /C#/Basics/forLoop/forLoop/obj/Debug/net6.0/forLoop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forLoop/forLoop/obj/Debug/net6.0/forLoop.dll -------------------------------------------------------------------------------- /C#/Basics/forLoop/forLoop/obj/Debug/net6.0/forLoop.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 4a63fcb2a8653e9526df4dd0ee9ed37f38fb8789 2 | -------------------------------------------------------------------------------- /C#/Basics/forLoop/forLoop/obj/Debug/net6.0/forLoop.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forLoop/forLoop/obj/Debug/net6.0/forLoop.pdb -------------------------------------------------------------------------------- /C#/Basics/forLoop/forLoop/obj/Debug/net6.0/ref/forLoop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forLoop/forLoop/obj/Debug/net6.0/ref/forLoop.dll -------------------------------------------------------------------------------- /C#/Basics/forLoop/forLoop/obj/Debug/net6.0/refint/forLoop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forLoop/forLoop/obj/Debug/net6.0/refint/forLoop.dll -------------------------------------------------------------------------------- /C#/Basics/forLoop/forLoop/obj/forLoop.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forLoop/forLoop/obj/forLoop.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /C#/Basics/forLoop/forLoop/obj/forLoop.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forLoop/forLoop/obj/forLoop.csproj.nuget.g.props -------------------------------------------------------------------------------- /C#/Basics/forLoop/forLoop/obj/forLoop.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forLoop/forLoop/obj/forLoop.csproj.nuget.g.targets -------------------------------------------------------------------------------- /C#/Basics/forLoop/forLoop/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forLoop/forLoop/obj/project.assets.json -------------------------------------------------------------------------------- /C#/Basics/forLoop/forLoop/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/forLoop/forLoop/obj/project.nuget.cache -------------------------------------------------------------------------------- /C#/Basics/intruceConcept/.vs/ProjectEvaluation/intruceconcept.metadata.v5.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/intruceConcept/.vs/ProjectEvaluation/intruceconcept.metadata.v5.2 -------------------------------------------------------------------------------- /C#/Basics/intruceConcept/.vs/ProjectEvaluation/intruceconcept.projects.v5.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/intruceConcept/.vs/ProjectEvaluation/intruceconcept.projects.v5.2 -------------------------------------------------------------------------------- /C#/Basics/intruceConcept/.vs/intruceConcept/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/intruceConcept/.vs/intruceConcept/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /C#/Basics/intruceConcept/.vs/intruceConcept/FileContentIndex/read.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C#/Basics/intruceConcept/.vs/intruceConcept/v17/.futdcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/intruceConcept/.vs/intruceConcept/v17/.futdcache.v2 -------------------------------------------------------------------------------- /C#/Basics/intruceConcept/.vs/intruceConcept/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/intruceConcept/.vs/intruceConcept/v17/.suo -------------------------------------------------------------------------------- /C#/Basics/intruceConcept/intruceConcept.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/intruceConcept/intruceConcept.sln -------------------------------------------------------------------------------- /C#/Basics/intruceConcept/intruceConcept/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/intruceConcept/intruceConcept/Program.cs -------------------------------------------------------------------------------- /C#/Basics/intruceConcept/intruceConcept/intruceConcept.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/intruceConcept/intruceConcept/intruceConcept.csproj -------------------------------------------------------------------------------- /C#/Basics/intruceConcept/intruceConcept/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/intruceConcept/intruceConcept/obj/project.assets.json -------------------------------------------------------------------------------- /C#/Basics/intruceConcept/intruceConcept/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/intruceConcept/intruceConcept/obj/project.nuget.cache -------------------------------------------------------------------------------- /C#/Basics/switchCase/.vs/ProjectEvaluation/switchcase.metadata.v5.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/switchCase/.vs/ProjectEvaluation/switchcase.metadata.v5.2 -------------------------------------------------------------------------------- /C#/Basics/switchCase/.vs/ProjectEvaluation/switchcase.projects.v5.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/switchCase/.vs/ProjectEvaluation/switchcase.projects.v5.2 -------------------------------------------------------------------------------- /C#/Basics/switchCase/.vs/switchCase/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/switchCase/.vs/switchCase/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /C#/Basics/switchCase/.vs/switchCase/FileContentIndex/read.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C#/Basics/switchCase/.vs/switchCase/v17/.futdcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/switchCase/.vs/switchCase/v17/.futdcache.v2 -------------------------------------------------------------------------------- /C#/Basics/switchCase/.vs/switchCase/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/switchCase/.vs/switchCase/v17/.suo -------------------------------------------------------------------------------- /C#/Basics/switchCase/switchCase.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/switchCase/switchCase.sln -------------------------------------------------------------------------------- /C#/Basics/switchCase/switchCase/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/switchCase/switchCase/Program.cs -------------------------------------------------------------------------------- /C#/Basics/switchCase/switchCase/bin/Debug/net6.0/switchCase.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/switchCase/switchCase/bin/Debug/net6.0/switchCase.deps.json -------------------------------------------------------------------------------- /C#/Basics/switchCase/switchCase/bin/Debug/net6.0/switchCase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/switchCase/switchCase/bin/Debug/net6.0/switchCase.dll -------------------------------------------------------------------------------- /C#/Basics/switchCase/switchCase/bin/Debug/net6.0/switchCase.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/switchCase/switchCase/bin/Debug/net6.0/switchCase.exe -------------------------------------------------------------------------------- /C#/Basics/switchCase/switchCase/bin/Debug/net6.0/switchCase.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/switchCase/switchCase/bin/Debug/net6.0/switchCase.pdb -------------------------------------------------------------------------------- /C#/Basics/switchCase/switchCase/obj/Debug/net6.0/_IsIncrementalBuild: -------------------------------------------------------------------------------- 1 | obj\Debug\net6.0\\_IsIncrementalBuild 2 | -------------------------------------------------------------------------------- /C#/Basics/switchCase/switchCase/obj/Debug/net6.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/switchCase/switchCase/obj/Debug/net6.0/apphost.exe -------------------------------------------------------------------------------- /C#/Basics/switchCase/switchCase/obj/Debug/net6.0/ref/switchCase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/switchCase/switchCase/obj/Debug/net6.0/ref/switchCase.dll -------------------------------------------------------------------------------- /C#/Basics/switchCase/switchCase/obj/Debug/net6.0/refint/switchCase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/switchCase/switchCase/obj/Debug/net6.0/refint/switchCase.dll -------------------------------------------------------------------------------- /C#/Basics/switchCase/switchCase/obj/Debug/net6.0/switchCase.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/switchCase/switchCase/obj/Debug/net6.0/switchCase.AssemblyInfo.cs -------------------------------------------------------------------------------- /C#/Basics/switchCase/switchCase/obj/Debug/net6.0/switchCase.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 957e778fe60fc69d94db5c4f6de31cf2c3c38ca1 2 | -------------------------------------------------------------------------------- /C#/Basics/switchCase/switchCase/obj/Debug/net6.0/switchCase.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/switchCase/switchCase/obj/Debug/net6.0/switchCase.assets.cache -------------------------------------------------------------------------------- /C#/Basics/switchCase/switchCase/obj/Debug/net6.0/switchCase.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C#/Basics/switchCase/switchCase/obj/Debug/net6.0/switchCase.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | ded7af303e906edf4bfcbd5a2849e92ebf2706f0 2 | -------------------------------------------------------------------------------- /C#/Basics/switchCase/switchCase/obj/Debug/net6.0/switchCase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/switchCase/switchCase/obj/Debug/net6.0/switchCase.dll -------------------------------------------------------------------------------- /C#/Basics/switchCase/switchCase/obj/Debug/net6.0/switchCase.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 34649b02141033f5124bba41f0a96c3537df445e 2 | -------------------------------------------------------------------------------- /C#/Basics/switchCase/switchCase/obj/Debug/net6.0/switchCase.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/switchCase/switchCase/obj/Debug/net6.0/switchCase.pdb -------------------------------------------------------------------------------- /C#/Basics/switchCase/switchCase/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/switchCase/switchCase/obj/project.assets.json -------------------------------------------------------------------------------- /C#/Basics/switchCase/switchCase/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/switchCase/switchCase/obj/project.nuget.cache -------------------------------------------------------------------------------- /C#/Basics/switchCase/switchCase/obj/switchCase.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/switchCase/switchCase/obj/switchCase.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /C#/Basics/switchCase/switchCase/obj/switchCase.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/switchCase/switchCase/obj/switchCase.csproj.nuget.g.props -------------------------------------------------------------------------------- /C#/Basics/switchCase/switchCase/obj/switchCase.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/switchCase/switchCase/obj/switchCase.csproj.nuget.g.targets -------------------------------------------------------------------------------- /C#/Basics/switchCase/switchCase/switchCase.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/switchCase/switchCase/switchCase.csproj -------------------------------------------------------------------------------- /C#/Basics/tryAndCatch/.vs/ProjectEvaluation/tryandcatch.metadata.v5.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/tryAndCatch/.vs/ProjectEvaluation/tryandcatch.metadata.v5.2 -------------------------------------------------------------------------------- /C#/Basics/tryAndCatch/.vs/ProjectEvaluation/tryandcatch.projects.v5.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/tryAndCatch/.vs/ProjectEvaluation/tryandcatch.projects.v5.2 -------------------------------------------------------------------------------- /C#/Basics/tryAndCatch/.vs/tryAndCatch/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/tryAndCatch/.vs/tryAndCatch/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /C#/Basics/tryAndCatch/.vs/tryAndCatch/FileContentIndex/read.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C#/Basics/tryAndCatch/.vs/tryAndCatch/v17/.futdcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/tryAndCatch/.vs/tryAndCatch/v17/.futdcache.v2 -------------------------------------------------------------------------------- /C#/Basics/tryAndCatch/.vs/tryAndCatch/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/tryAndCatch/.vs/tryAndCatch/v17/.suo -------------------------------------------------------------------------------- /C#/Basics/tryAndCatch/tryAndCatch.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/tryAndCatch/tryAndCatch.sln -------------------------------------------------------------------------------- /C#/Basics/tryAndCatch/tryAndCatch/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/tryAndCatch/tryAndCatch/Program.cs -------------------------------------------------------------------------------- /C#/Basics/tryAndCatch/tryAndCatch/bin/Debug/net6.0/tryAndCatch.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/tryAndCatch/tryAndCatch/bin/Debug/net6.0/tryAndCatch.deps.json -------------------------------------------------------------------------------- /C#/Basics/tryAndCatch/tryAndCatch/bin/Debug/net6.0/tryAndCatch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/tryAndCatch/tryAndCatch/bin/Debug/net6.0/tryAndCatch.dll -------------------------------------------------------------------------------- /C#/Basics/tryAndCatch/tryAndCatch/bin/Debug/net6.0/tryAndCatch.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/tryAndCatch/tryAndCatch/bin/Debug/net6.0/tryAndCatch.exe -------------------------------------------------------------------------------- /C#/Basics/tryAndCatch/tryAndCatch/bin/Debug/net6.0/tryAndCatch.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/tryAndCatch/tryAndCatch/bin/Debug/net6.0/tryAndCatch.pdb -------------------------------------------------------------------------------- /C#/Basics/tryAndCatch/tryAndCatch/obj/Debug/net6.0/_IsIncrementalBuild: -------------------------------------------------------------------------------- 1 | obj\Debug\net6.0\\_IsIncrementalBuild 2 | -------------------------------------------------------------------------------- /C#/Basics/tryAndCatch/tryAndCatch/obj/Debug/net6.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/tryAndCatch/tryAndCatch/obj/Debug/net6.0/apphost.exe -------------------------------------------------------------------------------- /C#/Basics/tryAndCatch/tryAndCatch/obj/Debug/net6.0/ref/tryAndCatch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/tryAndCatch/tryAndCatch/obj/Debug/net6.0/ref/tryAndCatch.dll -------------------------------------------------------------------------------- /C#/Basics/tryAndCatch/tryAndCatch/obj/Debug/net6.0/refint/tryAndCatch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/tryAndCatch/tryAndCatch/obj/Debug/net6.0/refint/tryAndCatch.dll -------------------------------------------------------------------------------- /C#/Basics/tryAndCatch/tryAndCatch/obj/Debug/net6.0/tryAndCatch.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 10c7155957c16d1bccd42faf9adacc67c8d71236 2 | -------------------------------------------------------------------------------- /C#/Basics/tryAndCatch/tryAndCatch/obj/Debug/net6.0/tryAndCatch.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/tryAndCatch/tryAndCatch/obj/Debug/net6.0/tryAndCatch.assets.cache -------------------------------------------------------------------------------- /C#/Basics/tryAndCatch/tryAndCatch/obj/Debug/net6.0/tryAndCatch.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C#/Basics/tryAndCatch/tryAndCatch/obj/Debug/net6.0/tryAndCatch.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | bec91f25e7b4d3a3cf6c245c27dda3d6680a87bc 2 | -------------------------------------------------------------------------------- /C#/Basics/tryAndCatch/tryAndCatch/obj/Debug/net6.0/tryAndCatch.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/tryAndCatch/tryAndCatch/obj/Debug/net6.0/tryAndCatch.dll -------------------------------------------------------------------------------- /C#/Basics/tryAndCatch/tryAndCatch/obj/Debug/net6.0/tryAndCatch.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | d707716f7fb45c01af364e939bababe316dff677 2 | -------------------------------------------------------------------------------- /C#/Basics/tryAndCatch/tryAndCatch/obj/Debug/net6.0/tryAndCatch.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/tryAndCatch/tryAndCatch/obj/Debug/net6.0/tryAndCatch.pdb -------------------------------------------------------------------------------- /C#/Basics/tryAndCatch/tryAndCatch/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/tryAndCatch/tryAndCatch/obj/project.assets.json -------------------------------------------------------------------------------- /C#/Basics/tryAndCatch/tryAndCatch/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/tryAndCatch/tryAndCatch/obj/project.nuget.cache -------------------------------------------------------------------------------- /C#/Basics/tryAndCatch/tryAndCatch/obj/tryAndCatch.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/tryAndCatch/tryAndCatch/obj/tryAndCatch.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /C#/Basics/tryAndCatch/tryAndCatch/obj/tryAndCatch.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/tryAndCatch/tryAndCatch/obj/tryAndCatch.csproj.nuget.g.props -------------------------------------------------------------------------------- /C#/Basics/tryAndCatch/tryAndCatch/obj/tryAndCatch.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/tryAndCatch/tryAndCatch/obj/tryAndCatch.csproj.nuget.g.targets -------------------------------------------------------------------------------- /C#/Basics/tryAndCatch/tryAndCatch/tryAndCatch.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/tryAndCatch/tryAndCatch/tryAndCatch.csproj -------------------------------------------------------------------------------- /C#/Basics/whileLoop/.vs/ProjectEvaluation/whileloop.metadata.v5.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/whileLoop/.vs/ProjectEvaluation/whileloop.metadata.v5.2 -------------------------------------------------------------------------------- /C#/Basics/whileLoop/.vs/ProjectEvaluation/whileloop.projects.v5.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/whileLoop/.vs/ProjectEvaluation/whileloop.projects.v5.2 -------------------------------------------------------------------------------- /C#/Basics/whileLoop/.vs/whileLoop/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/whileLoop/.vs/whileLoop/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /C#/Basics/whileLoop/.vs/whileLoop/FileContentIndex/read.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C#/Basics/whileLoop/.vs/whileLoop/v17/.futdcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/whileLoop/.vs/whileLoop/v17/.futdcache.v2 -------------------------------------------------------------------------------- /C#/Basics/whileLoop/.vs/whileLoop/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/whileLoop/.vs/whileLoop/v17/.suo -------------------------------------------------------------------------------- /C#/Basics/whileLoop/whileLoop.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/whileLoop/whileLoop.sln -------------------------------------------------------------------------------- /C#/Basics/whileLoop/whileLoop/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/whileLoop/whileLoop/Program.cs -------------------------------------------------------------------------------- /C#/Basics/whileLoop/whileLoop/bin/Debug/net6.0/whileLoop.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/whileLoop/whileLoop/bin/Debug/net6.0/whileLoop.deps.json -------------------------------------------------------------------------------- /C#/Basics/whileLoop/whileLoop/bin/Debug/net6.0/whileLoop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/whileLoop/whileLoop/bin/Debug/net6.0/whileLoop.dll -------------------------------------------------------------------------------- /C#/Basics/whileLoop/whileLoop/bin/Debug/net6.0/whileLoop.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/whileLoop/whileLoop/bin/Debug/net6.0/whileLoop.exe -------------------------------------------------------------------------------- /C#/Basics/whileLoop/whileLoop/bin/Debug/net6.0/whileLoop.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/whileLoop/whileLoop/bin/Debug/net6.0/whileLoop.pdb -------------------------------------------------------------------------------- /C#/Basics/whileLoop/whileLoop/bin/Debug/net6.0/whileLoop.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/whileLoop/whileLoop/bin/Debug/net6.0/whileLoop.runtimeconfig.json -------------------------------------------------------------------------------- /C#/Basics/whileLoop/whileLoop/obj/Debug/net6.0/_IsIncrementalBuild: -------------------------------------------------------------------------------- 1 | obj\Debug\net6.0\\_IsIncrementalBuild 2 | -------------------------------------------------------------------------------- /C#/Basics/whileLoop/whileLoop/obj/Debug/net6.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/whileLoop/whileLoop/obj/Debug/net6.0/apphost.exe -------------------------------------------------------------------------------- /C#/Basics/whileLoop/whileLoop/obj/Debug/net6.0/ref/whileLoop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/whileLoop/whileLoop/obj/Debug/net6.0/ref/whileLoop.dll -------------------------------------------------------------------------------- /C#/Basics/whileLoop/whileLoop/obj/Debug/net6.0/refint/whileLoop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/whileLoop/whileLoop/obj/Debug/net6.0/refint/whileLoop.dll -------------------------------------------------------------------------------- /C#/Basics/whileLoop/whileLoop/obj/Debug/net6.0/whileLoop.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/whileLoop/whileLoop/obj/Debug/net6.0/whileLoop.AssemblyInfo.cs -------------------------------------------------------------------------------- /C#/Basics/whileLoop/whileLoop/obj/Debug/net6.0/whileLoop.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/whileLoop/whileLoop/obj/Debug/net6.0/whileLoop.GlobalUsings.g.cs -------------------------------------------------------------------------------- /C#/Basics/whileLoop/whileLoop/obj/Debug/net6.0/whileLoop.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/whileLoop/whileLoop/obj/Debug/net6.0/whileLoop.assets.cache -------------------------------------------------------------------------------- /C#/Basics/whileLoop/whileLoop/obj/Debug/net6.0/whileLoop.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C#/Basics/whileLoop/whileLoop/obj/Debug/net6.0/whileLoop.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | d8871815a25217b86a4d1aead601df74b181cded 2 | -------------------------------------------------------------------------------- /C#/Basics/whileLoop/whileLoop/obj/Debug/net6.0/whileLoop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/whileLoop/whileLoop/obj/Debug/net6.0/whileLoop.dll -------------------------------------------------------------------------------- /C#/Basics/whileLoop/whileLoop/obj/Debug/net6.0/whileLoop.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/whileLoop/whileLoop/obj/Debug/net6.0/whileLoop.pdb -------------------------------------------------------------------------------- /C#/Basics/whileLoop/whileLoop/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/whileLoop/whileLoop/obj/project.assets.json -------------------------------------------------------------------------------- /C#/Basics/whileLoop/whileLoop/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/whileLoop/whileLoop/obj/project.nuget.cache -------------------------------------------------------------------------------- /C#/Basics/whileLoop/whileLoop/obj/whileLoop.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/whileLoop/whileLoop/obj/whileLoop.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /C#/Basics/whileLoop/whileLoop/obj/whileLoop.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/whileLoop/whileLoop/obj/whileLoop.csproj.nuget.g.props -------------------------------------------------------------------------------- /C#/Basics/whileLoop/whileLoop/obj/whileLoop.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/whileLoop/whileLoop/obj/whileLoop.csproj.nuget.g.targets -------------------------------------------------------------------------------- /C#/Basics/whileLoop/whileLoop/whileLoop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/Basics/whileLoop/whileLoop/whileLoop.csproj -------------------------------------------------------------------------------- /C#/OOP/NullConcept/GenericTypes/GenericTypes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/NullConcept/GenericTypes/GenericTypes.csproj -------------------------------------------------------------------------------- /C#/OOP/NullConcept/GenericTypes/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/NullConcept/GenericTypes/Program.cs -------------------------------------------------------------------------------- /C#/OOP/NullConcept/NullConcept.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/NullConcept/NullConcept.sln -------------------------------------------------------------------------------- /C#/OOP/NullConcept/NullOperations/NullOperations.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/NullConcept/NullOperations/NullOperations.csproj -------------------------------------------------------------------------------- /C#/OOP/NullConcept/NullOperations/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/NullConcept/NullOperations/Program.cs -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/.vs/OOPOverview/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/.vs/OOPOverview/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/.vs/OOPOverview/FileContentIndex/read.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/.vs/OOPOverview/v17/.futdcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/.vs/OOPOverview/v17/.futdcache.v2 -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/.vs/OOPOverview/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/.vs/OOPOverview/v17/.suo -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/.vs/ProjectEvaluation/oopoverview.metadata.v5.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/.vs/ProjectEvaluation/oopoverview.metadata.v5.2 -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/.vs/ProjectEvaluation/oopoverview.projects.v5.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/.vs/ProjectEvaluation/oopoverview.projects.v5.2 -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/AbstractVSInterface/AbstractVSInterface.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/AbstractVSInterface/AbstractVSInterface.csproj -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/AbstractVSInterface/Document.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/AbstractVSInterface/Document.cs -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/AbstractVSInterface/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/AbstractVSInterface/Program.cs -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/AbstractVSInterface/obj/Debug/net6.0/AbstractVSInterface.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | e33a4940907ad2fa1822d2fe746af2b6f9a3e448 2 | -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/AbstractVSInterface/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/AbstractVSInterface/obj/project.assets.json -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/AbstractVSInterface/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/AbstractVSInterface/obj/project.nuget.cache -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/BuiltInInterface/BuiltInInterface.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/BuiltInInterface/BuiltInInterface.sln -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/BuiltInInterface/BuiltInInterface/BuiltInInterface.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/BuiltInInterface/BuiltInInterface/BuiltInInterface.csproj -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/BuiltInInterface/BuiltInInterface/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/BuiltInInterface/BuiltInInterface/Person.cs -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/BuiltInInterface/BuiltInInterface/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/BuiltInInterface/BuiltInInterface/Product.cs -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/BuiltInInterface/BuiltInInterface/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/BuiltInInterface/BuiltInInterface/Program.cs -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/ClassVSObject/ClassVSObject.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/ClassVSObject/ClassVSObject.csproj -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/ClassVSObject/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/ClassVSObject/Product.cs -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/ClassVSObject/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/ClassVSObject/Program.cs -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/ClassVSObject/bin/Debug/net6.0/ClassVSObject.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/ClassVSObject/bin/Debug/net6.0/ClassVSObject.deps.json -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/ClassVSObject/bin/Debug/net6.0/ClassVSObject.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/ClassVSObject/bin/Debug/net6.0/ClassVSObject.dll -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/ClassVSObject/bin/Debug/net6.0/ClassVSObject.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/ClassVSObject/bin/Debug/net6.0/ClassVSObject.exe -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/ClassVSObject/bin/Debug/net6.0/ClassVSObject.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/ClassVSObject/bin/Debug/net6.0/ClassVSObject.pdb -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/ClassVSObject/obj/ClassVSObject.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/ClassVSObject/obj/ClassVSObject.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/ClassVSObject/obj/ClassVSObject.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/ClassVSObject/obj/ClassVSObject.csproj.nuget.g.props -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/ClassVSObject/obj/ClassVSObject.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/ClassVSObject/obj/ClassVSObject.csproj.nuget.g.targets -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/ClassVSObject/obj/Debug/net6.0/ClassVSObject.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | a7e6f6e4d333730cbc309195ac81dbde96fb09a8 2 | -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/ClassVSObject/obj/Debug/net6.0/ClassVSObject.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/ClassVSObject/obj/Debug/net6.0/ClassVSObject.assets.cache -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/ClassVSObject/obj/Debug/net6.0/ClassVSObject.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/ClassVSObject/obj/Debug/net6.0/ClassVSObject.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a9ecfe48301d53b820da73f0bec36b8da27dc802 2 | -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/ClassVSObject/obj/Debug/net6.0/ClassVSObject.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/ClassVSObject/obj/Debug/net6.0/ClassVSObject.dll -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/ClassVSObject/obj/Debug/net6.0/ClassVSObject.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 786940653392d3c1724d669afa4876c4189e11e2 2 | -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/ClassVSObject/obj/Debug/net6.0/ClassVSObject.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/ClassVSObject/obj/Debug/net6.0/ClassVSObject.pdb -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/ClassVSObject/obj/Debug/net6.0/_IsIncrementalBuild: -------------------------------------------------------------------------------- 1 | obj\Debug\net6.0\\_IsIncrementalBuild 2 | -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/ClassVSObject/obj/Debug/net6.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/ClassVSObject/obj/Debug/net6.0/apphost.exe -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/ClassVSObject/obj/Debug/net6.0/ref/ClassVSObject.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/ClassVSObject/obj/Debug/net6.0/ref/ClassVSObject.dll -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/ClassVSObject/obj/Debug/net6.0/refint/ClassVSObject.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/ClassVSObject/obj/Debug/net6.0/refint/ClassVSObject.dll -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/ClassVSObject/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/ClassVSObject/obj/project.assets.json -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/ClassVSObject/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/ClassVSObject/obj/project.nuget.cache -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Constructors/Constructors.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Constructors/Constructors.csproj -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Constructors/Ekmek.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Constructors/Ekmek.cs -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Constructors/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Constructors/Program.cs -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Constructors/ReportGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Constructors/ReportGenerator.cs -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Constructors/bin/Debug/net6.0/Constructors.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Constructors/bin/Debug/net6.0/Constructors.deps.json -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Constructors/bin/Debug/net6.0/Constructors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Constructors/bin/Debug/net6.0/Constructors.dll -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Constructors/bin/Debug/net6.0/Constructors.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Constructors/bin/Debug/net6.0/Constructors.exe -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Constructors/bin/Debug/net6.0/Constructors.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Constructors/bin/Debug/net6.0/Constructors.pdb -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Constructors/obj/Constructors.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Constructors/obj/Constructors.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Constructors/obj/Constructors.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Constructors/obj/Constructors.csproj.nuget.g.props -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Constructors/obj/Constructors.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Constructors/obj/Constructors.csproj.nuget.g.targets -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Constructors/obj/Debug/net6.0/Constructors.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 242a29137e50228dd9593204fcab771178d92f0f 2 | -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Constructors/obj/Debug/net6.0/Constructors.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Constructors/obj/Debug/net6.0/Constructors.assets.cache -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Constructors/obj/Debug/net6.0/Constructors.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Constructors/obj/Debug/net6.0/Constructors.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 1708d703507928b58802d73a2ac6bf1510ad91ac 2 | -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Constructors/obj/Debug/net6.0/Constructors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Constructors/obj/Debug/net6.0/Constructors.dll -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Constructors/obj/Debug/net6.0/Constructors.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 11f52b968e96e4d1a668cbcad0c653aabc3089b6 2 | -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Constructors/obj/Debug/net6.0/Constructors.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Constructors/obj/Debug/net6.0/Constructors.pdb -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Constructors/obj/Debug/net6.0/_IsIncrementalBuild: -------------------------------------------------------------------------------- 1 | obj\Debug\net6.0\\_IsIncrementalBuild 2 | -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Constructors/obj/Debug/net6.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Constructors/obj/Debug/net6.0/apphost.exe -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Constructors/obj/Debug/net6.0/ref/Constructors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Constructors/obj/Debug/net6.0/ref/Constructors.dll -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Constructors/obj/Debug/net6.0/refint/Constructors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Constructors/obj/Debug/net6.0/refint/Constructors.dll -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Constructors/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Constructors/obj/project.assets.json -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Constructors/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Constructors/obj/project.nuget.cache -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/CounterStrike/.vs/CounterStrike/FileContentIndex/read.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/CounterStrike/.vs/CounterStrike/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/CounterStrike/.vs/CounterStrike/v17/.suo -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/CounterStrike/CounterStrike.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/CounterStrike/CounterStrike.sln -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/CounterStrike/CounterStrike/CounterStrike.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/CounterStrike/CounterStrike/CounterStrike.csproj -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/CounterStrike/CounterStrike/Oyuncu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/CounterStrike/CounterStrike/Oyuncu.cs -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/CounterStrike/CounterStrike/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/CounterStrike/CounterStrike/Program.cs -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/CounterStrike/CounterStrike/Silah.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/CounterStrike/CounterStrike/Silah.cs -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/CounterStrike/CounterStrike/obj/Debug/net6.0/CounterStrike.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 8a413c0dfe7234f189be973d9ace80257b2cf949 2 | -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/CounterStrike/CounterStrike/obj/Debug/net6.0/CounterStrike.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/CounterStrike/CounterStrike/obj/Debug/net6.0/CounterStrike.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 70131c73034def36e27dbed890c0245325c27b03 2 | -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/CounterStrike/CounterStrike/obj/Debug/net6.0/CounterStrike.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 5dfc10d35629575f72755a89e904187a41104453 2 | -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/CounterStrike/CounterStrike/obj/Debug/net6.0/_IsIncrementalBuild: -------------------------------------------------------------------------------- 1 | obj\Debug\net6.0\\_IsIncrementalBuild 2 | -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/CounterStrike/CounterStrike/obj/Debug/net6.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/CounterStrike/CounterStrike/obj/Debug/net6.0/apphost.exe -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/CounterStrike/CounterStrike/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/CounterStrike/CounterStrike/obj/project.assets.json -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/CounterStrike/CounterStrike/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/CounterStrike/CounterStrike/obj/project.nuget.cache -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Encapsulation/Encapsulation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Encapsulation/Encapsulation.csproj -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Encapsulation/Otomobil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Encapsulation/Otomobil.cs -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Encapsulation/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Encapsulation/Product.cs -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Encapsulation/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Encapsulation/Program.cs -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Encapsulation/bin/Debug/net6.0/Encapsulation.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Encapsulation/bin/Debug/net6.0/Encapsulation.deps.json -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Encapsulation/bin/Debug/net6.0/Encapsulation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Encapsulation/bin/Debug/net6.0/Encapsulation.dll -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Encapsulation/bin/Debug/net6.0/Encapsulation.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Encapsulation/bin/Debug/net6.0/Encapsulation.exe -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Encapsulation/bin/Debug/net6.0/Encapsulation.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Encapsulation/bin/Debug/net6.0/Encapsulation.pdb -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Encapsulation/obj/Debug/net6.0/Encapsulation.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | aea29ce25cd4b7191ffc6f9d43cbbe80e84ef95c 2 | -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Encapsulation/obj/Debug/net6.0/Encapsulation.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Encapsulation/obj/Debug/net6.0/Encapsulation.assets.cache -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Encapsulation/obj/Debug/net6.0/Encapsulation.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Encapsulation/obj/Debug/net6.0/Encapsulation.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 8b36486644cdda43f12d16aacfb742b3b3be6a3c 2 | -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Encapsulation/obj/Debug/net6.0/Encapsulation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Encapsulation/obj/Debug/net6.0/Encapsulation.dll -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Encapsulation/obj/Debug/net6.0/Encapsulation.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | dd5b650118f074ee5f3f5a39e5fc6ed470769c8a 2 | -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Encapsulation/obj/Debug/net6.0/Encapsulation.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Encapsulation/obj/Debug/net6.0/Encapsulation.pdb -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Encapsulation/obj/Debug/net6.0/_IsIncrementalBuild: -------------------------------------------------------------------------------- 1 | obj\Debug\net6.0\\_IsIncrementalBuild 2 | -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Encapsulation/obj/Debug/net6.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Encapsulation/obj/Debug/net6.0/apphost.exe -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Encapsulation/obj/Debug/net6.0/ref/Encapsulation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Encapsulation/obj/Debug/net6.0/ref/Encapsulation.dll -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Encapsulation/obj/Debug/net6.0/refint/Encapsulation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Encapsulation/obj/Debug/net6.0/refint/Encapsulation.dll -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Encapsulation/obj/Encapsulation.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Encapsulation/obj/Encapsulation.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Encapsulation/obj/Encapsulation.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Encapsulation/obj/Encapsulation.csproj.nuget.g.props -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Encapsulation/obj/Encapsulation.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Encapsulation/obj/Encapsulation.csproj.nuget.g.targets -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Encapsulation/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Encapsulation/obj/project.assets.json -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Encapsulation/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Encapsulation/obj/project.nuget.cache -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/OOPOverview.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/OOPOverview.sln -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Polymorphism/Asci.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Polymorphism/Asci.cs -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Polymorphism/Polymorphism.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Polymorphism/Polymorphism.csproj -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Polymorphism/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Polymorphism/Program.cs -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Polymorphism/Yemek.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Polymorphism/Yemek.cs -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Polymorphism/bin/Debug/net6.0/Polymorphism.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Polymorphism/bin/Debug/net6.0/Polymorphism.deps.json -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Polymorphism/bin/Debug/net6.0/Polymorphism.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Polymorphism/bin/Debug/net6.0/Polymorphism.dll -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Polymorphism/bin/Debug/net6.0/Polymorphism.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Polymorphism/bin/Debug/net6.0/Polymorphism.exe -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Polymorphism/bin/Debug/net6.0/Polymorphism.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Polymorphism/bin/Debug/net6.0/Polymorphism.pdb -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Polymorphism/obj/Debug/net6.0/Polymorphism.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | f268ba06d22a595f47c4f5c53b617441ec49c273 2 | -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Polymorphism/obj/Debug/net6.0/Polymorphism.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Polymorphism/obj/Debug/net6.0/Polymorphism.assets.cache -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Polymorphism/obj/Debug/net6.0/Polymorphism.csproj.BuildWithSkipAnalyzers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Polymorphism/obj/Debug/net6.0/Polymorphism.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 1db1bbb20a002729b8f998ba7e1316ad94272c91 2 | -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Polymorphism/obj/Debug/net6.0/Polymorphism.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Polymorphism/obj/Debug/net6.0/Polymorphism.dll -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Polymorphism/obj/Debug/net6.0/Polymorphism.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 10fa2984715b044788de7b5e5ce91a3bd0095688 2 | -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Polymorphism/obj/Debug/net6.0/Polymorphism.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Polymorphism/obj/Debug/net6.0/Polymorphism.pdb -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Polymorphism/obj/Debug/net6.0/_IsIncrementalBuild: -------------------------------------------------------------------------------- 1 | obj\Debug\net6.0\\_IsIncrementalBuild 2 | -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Polymorphism/obj/Debug/net6.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Polymorphism/obj/Debug/net6.0/apphost.exe -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Polymorphism/obj/Debug/net6.0/ref/Polymorphism.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Polymorphism/obj/Debug/net6.0/ref/Polymorphism.dll -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Polymorphism/obj/Debug/net6.0/refint/Polymorphism.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Polymorphism/obj/Debug/net6.0/refint/Polymorphism.dll -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Polymorphism/obj/Polymorphism.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Polymorphism/obj/Polymorphism.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Polymorphism/obj/Polymorphism.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Polymorphism/obj/Polymorphism.csproj.nuget.g.props -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Polymorphism/obj/Polymorphism.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Polymorphism/obj/Polymorphism.csproj.nuget.g.targets -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Polymorphism/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Polymorphism/obj/project.assets.json -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/Polymorphism/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/Polymorphism/obj/project.nuget.cache -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/SOLID/DependencyInversion/DependencyInversion.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/SOLID/DependencyInversion/DependencyInversion.csproj -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/SOLID/DependencyInversion/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/SOLID/DependencyInversion/Program.cs -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/SOLID/DependencyInversion/Reporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/SOLID/DependencyInversion/Reporter.cs -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/SOLID/InterfaceSegregation/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/SOLID/InterfaceSegregation/IRepository.cs -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/SOLID/InterfaceSegregation/InterfaceSegregation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/SOLID/InterfaceSegregation/InterfaceSegregation.csproj -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/SOLID/InterfaceSegregation/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/SOLID/InterfaceSegregation/Program.cs -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/SOLID/LiskovSubstution/GeometryLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/SOLID/LiskovSubstution/GeometryLibrary.cs -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/SOLID/LiskovSubstution/LiskovSubstution.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/SOLID/LiskovSubstution/LiskovSubstution.csproj -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/SOLID/LiskovSubstution/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/SOLID/LiskovSubstution/Program.cs -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/SOLID/OpenClosed/OpenClosed.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/SOLID/OpenClosed/OpenClosed.csproj -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/SOLID/OpenClosed/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/SOLID/OpenClosed/Program.cs -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/SOLID/SOLID.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/SOLID/SOLID.sln -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/SOLID/SingleResponsibility/DataAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/SOLID/SingleResponsibility/DataAccess.cs -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/SOLID/SingleResponsibility/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/SOLID/SingleResponsibility/Form1.Designer.cs -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/SOLID/SingleResponsibility/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/SOLID/SingleResponsibility/Form1.cs -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/SOLID/SingleResponsibility/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/SOLID/SingleResponsibility/Form1.resx -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/SOLID/SingleResponsibility/ProductService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/SOLID/SingleResponsibility/ProductService.cs -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/SOLID/SingleResponsibility/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/SOLID/SingleResponsibility/Program.cs -------------------------------------------------------------------------------- /C#/OOP/OOPOverview/SOLID/SingleResponsibility/SingleResponsibility.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/C#/OOP/OOPOverview/SOLID/SingleResponsibility/SingleResponsibility.csproj -------------------------------------------------------------------------------- /EF CORE/DbFirstSample/DbFirstSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/DbFirstSample/DbFirstSample.sln -------------------------------------------------------------------------------- /EF CORE/DbFirstSample/DbFirstSample/Data/NorthwindContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/DbFirstSample/DbFirstSample/Data/NorthwindContext.cs -------------------------------------------------------------------------------- /EF CORE/DbFirstSample/DbFirstSample/DbFirstSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/DbFirstSample/DbFirstSample/DbFirstSample.csproj -------------------------------------------------------------------------------- /EF CORE/DbFirstSample/DbFirstSample/Models/AktifUrunler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/DbFirstSample/DbFirstSample/Models/AktifUrunler.cs -------------------------------------------------------------------------------- /EF CORE/DbFirstSample/DbFirstSample/Models/AlphabeticalListOfProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/DbFirstSample/DbFirstSample/Models/AlphabeticalListOfProduct.cs -------------------------------------------------------------------------------- /EF CORE/DbFirstSample/DbFirstSample/Models/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/DbFirstSample/DbFirstSample/Models/Category.cs -------------------------------------------------------------------------------- /EF CORE/DbFirstSample/DbFirstSample/Models/CategorySales1996.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/DbFirstSample/DbFirstSample/Models/CategorySales1996.cs -------------------------------------------------------------------------------- /EF CORE/DbFirstSample/DbFirstSample/Models/CategorySalesFor1997.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/DbFirstSample/DbFirstSample/Models/CategorySalesFor1997.cs -------------------------------------------------------------------------------- /EF CORE/DbFirstSample/DbFirstSample/Models/CurrentProductList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/DbFirstSample/DbFirstSample/Models/CurrentProductList.cs -------------------------------------------------------------------------------- /EF CORE/DbFirstSample/DbFirstSample/Models/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/DbFirstSample/DbFirstSample/Models/Customer.cs -------------------------------------------------------------------------------- /EF CORE/DbFirstSample/DbFirstSample/Models/CustomerAndSuppliersByCity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/DbFirstSample/DbFirstSample/Models/CustomerAndSuppliersByCity.cs -------------------------------------------------------------------------------- /EF CORE/DbFirstSample/DbFirstSample/Models/CustomerDemographic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/DbFirstSample/DbFirstSample/Models/CustomerDemographic.cs -------------------------------------------------------------------------------- /EF CORE/DbFirstSample/DbFirstSample/Models/DetailedOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/DbFirstSample/DbFirstSample/Models/DetailedOrder.cs -------------------------------------------------------------------------------- /EF CORE/DbFirstSample/DbFirstSample/Models/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/DbFirstSample/DbFirstSample/Models/Employee.cs -------------------------------------------------------------------------------- /EF CORE/DbFirstSample/DbFirstSample/Models/Invoice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/DbFirstSample/DbFirstSample/Models/Invoice.cs -------------------------------------------------------------------------------- /EF CORE/DbFirstSample/DbFirstSample/Models/KategoriMenusu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/DbFirstSample/DbFirstSample/Models/KategoriMenusu.cs -------------------------------------------------------------------------------- /EF CORE/DbFirstSample/DbFirstSample/Models/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/DbFirstSample/DbFirstSample/Models/Order.cs -------------------------------------------------------------------------------- /EF CORE/DbFirstSample/DbFirstSample/Models/OrderDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/DbFirstSample/DbFirstSample/Models/OrderDetail.cs -------------------------------------------------------------------------------- /EF CORE/DbFirstSample/DbFirstSample/Models/OrderDetailsExtended.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/DbFirstSample/DbFirstSample/Models/OrderDetailsExtended.cs -------------------------------------------------------------------------------- /EF CORE/DbFirstSample/DbFirstSample/Models/OrderSubtotal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/DbFirstSample/DbFirstSample/Models/OrderSubtotal.cs -------------------------------------------------------------------------------- /EF CORE/DbFirstSample/DbFirstSample/Models/OrdersQry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/DbFirstSample/DbFirstSample/Models/OrdersQry.cs -------------------------------------------------------------------------------- /EF CORE/DbFirstSample/DbFirstSample/Models/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/DbFirstSample/DbFirstSample/Models/Product.cs -------------------------------------------------------------------------------- /EF CORE/DbFirstSample/DbFirstSample/Models/ProductSalesFor1997.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/DbFirstSample/DbFirstSample/Models/ProductSalesFor1997.cs -------------------------------------------------------------------------------- /EF CORE/DbFirstSample/DbFirstSample/Models/ProductsAboveAveragePrice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/DbFirstSample/DbFirstSample/Models/ProductsAboveAveragePrice.cs -------------------------------------------------------------------------------- /EF CORE/DbFirstSample/DbFirstSample/Models/ProductsByCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/DbFirstSample/DbFirstSample/Models/ProductsByCategory.cs -------------------------------------------------------------------------------- /EF CORE/DbFirstSample/DbFirstSample/Models/QuarterlyOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/DbFirstSample/DbFirstSample/Models/QuarterlyOrder.cs -------------------------------------------------------------------------------- /EF CORE/DbFirstSample/DbFirstSample/Models/Region.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/DbFirstSample/DbFirstSample/Models/Region.cs -------------------------------------------------------------------------------- /EF CORE/DbFirstSample/DbFirstSample/Models/SalesByCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/DbFirstSample/DbFirstSample/Models/SalesByCategory.cs -------------------------------------------------------------------------------- /EF CORE/DbFirstSample/DbFirstSample/Models/SalesTotalsByAmount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/DbFirstSample/DbFirstSample/Models/SalesTotalsByAmount.cs -------------------------------------------------------------------------------- /EF CORE/DbFirstSample/DbFirstSample/Models/Shipper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/DbFirstSample/DbFirstSample/Models/Shipper.cs -------------------------------------------------------------------------------- /EF CORE/DbFirstSample/DbFirstSample/Models/SummaryOfSalesByQuarter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/DbFirstSample/DbFirstSample/Models/SummaryOfSalesByQuarter.cs -------------------------------------------------------------------------------- /EF CORE/DbFirstSample/DbFirstSample/Models/SummaryOfSalesByYear.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/DbFirstSample/DbFirstSample/Models/SummaryOfSalesByYear.cs -------------------------------------------------------------------------------- /EF CORE/DbFirstSample/DbFirstSample/Models/Supplier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/DbFirstSample/DbFirstSample/Models/Supplier.cs -------------------------------------------------------------------------------- /EF CORE/DbFirstSample/DbFirstSample/Models/Territory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/DbFirstSample/DbFirstSample/Models/Territory.cs -------------------------------------------------------------------------------- /EF CORE/DbFirstSample/DbFirstSample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/DbFirstSample/DbFirstSample/Program.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Application/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Application/Class1.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Application/DTOs/Requests/CreateDirectorRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Application/DTOs/Requests/CreateDirectorRequest.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Application/DTOs/Requests/CreateNewMovieRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Application/DTOs/Requests/CreateNewMovieRequest.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Application/DTOs/Requests/CreateNewPlayerRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Application/DTOs/Requests/CreateNewPlayerRequest.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Application/DTOs/Requests/UpdateDirectorRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Application/DTOs/Requests/UpdateDirectorRequest.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Application/DTOs/Requests/UpdateMovieRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Application/DTOs/Requests/UpdateMovieRequest.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Application/DTOs/Requests/UpdatePlayerRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Application/DTOs/Requests/UpdatePlayerRequest.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Application/DTOs/Responses/DirectorListResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Application/DTOs/Responses/DirectorListResponse.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Application/DTOs/Responses/MovieListResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Application/DTOs/Responses/MovieListResponse.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Application/DTOs/Responses/PlayerListResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Application/DTOs/Responses/PlayerListResponse.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Application/DTOs/Responses/SingleDirectorResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Application/DTOs/Responses/SingleDirectorResponse.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Application/DirectorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Application/DirectorService.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Application/IDirectorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Application/IDirectorService.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Application/IMovieService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Application/IMovieService.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Application/IPlayerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Application/IPlayerService.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Application/MovieService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Application/MovieService.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Application/Movies.Application.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Application/Movies.Application.csproj -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Application/PlayerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Application/PlayerService.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Data/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Data/Class1.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Data/Data/MoviesDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Data/Data/MoviesDbContext.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Data/Migrations/20230504180207_init.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Data/Migrations/20230504180207_init.Designer.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Data/Migrations/20230504180207_init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Data/Migrations/20230504180207_init.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Data/Migrations/20230511195735_changeToNullable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Data/Migrations/20230511195735_changeToNullable.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Data/Migrations/MoviesDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Data/Migrations/MoviesDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Data/Movies.Data.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Data/Movies.Data.csproj -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Data/Repositories/EFDirectorRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Data/Repositories/EFDirectorRepository.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Data/Repositories/EFMovieRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Data/Repositories/EFMovieRepository.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Data/Repositories/EFPlayerRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Data/Repositories/EFPlayerRepository.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Data/Repositories/IDirectorRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Data/Repositories/IDirectorRepository.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Data/Repositories/IMovieRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Data/Repositories/IMovieRepository.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Data/Repositories/IPlayerRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Data/Repositories/IPlayerRepository.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Data/Repositories/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Data/Repositories/IRepository.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Data/Repositories/SingletonRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Data/Repositories/SingletonRepository.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Entities/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Entities/Class1.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Entities/Director.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Entities/Director.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Entities/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Entities/IEntity.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Entities/Movie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Entities/Movie.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Entities/Movies.Entities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Entities/Movies.Entities.csproj -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Entities/MoviesPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Entities/MoviesPlayer.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Entities/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Entities/Player.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.Entities/SingletonEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.Entities/SingletonEntity.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.WinForms/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.WinForms/Form1.Designer.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.WinForms/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.WinForms/Form1.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.WinForms/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.WinForms/Form1.resx -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.WinForms/FormDirectors.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.WinForms/FormDirectors.Designer.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.WinForms/FormDirectors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.WinForms/FormDirectors.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.WinForms/FormDirectors.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.WinForms/FormDirectors.resx -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.WinForms/FormMovies.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.WinForms/FormMovies.Designer.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.WinForms/FormMovies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.WinForms/FormMovies.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.WinForms/FormMovies.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.WinForms/FormMovies.resx -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.WinForms/FormPlayers.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.WinForms/FormPlayers.Designer.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.WinForms/FormPlayers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.WinForms/FormPlayers.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.WinForms/FormPlayers.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.WinForms/FormPlayers.resx -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.WinForms/Movies.WinForms.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.WinForms/Movies.WinForms.csproj -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.WinForms/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.WinForms/Program.cs -------------------------------------------------------------------------------- /EF CORE/Movies/Movies.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/Movies/Movies.sln -------------------------------------------------------------------------------- /EF CORE/introduceEFCore/introduceEFCore.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/introduceEFCore/introduceEFCore.sln -------------------------------------------------------------------------------- /EF CORE/introduceEFCore/introduceEFCore/Data/BookStoreDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/introduceEFCore/introduceEFCore/Data/BookStoreDbContext.cs -------------------------------------------------------------------------------- /EF CORE/introduceEFCore/introduceEFCore/Migrations/20230502172510_init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/introduceEFCore/introduceEFCore/Migrations/20230502172510_init.cs -------------------------------------------------------------------------------- /EF CORE/introduceEFCore/introduceEFCore/Models/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/introduceEFCore/introduceEFCore/Models/Author.cs -------------------------------------------------------------------------------- /EF CORE/introduceEFCore/introduceEFCore/Models/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/introduceEFCore/introduceEFCore/Models/Book.cs -------------------------------------------------------------------------------- /EF CORE/introduceEFCore/introduceEFCore/Models/Review.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/introduceEFCore/introduceEFCore/Models/Review.cs -------------------------------------------------------------------------------- /EF CORE/introduceEFCore/introduceEFCore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/introduceEFCore/introduceEFCore/Program.cs -------------------------------------------------------------------------------- /EF CORE/introduceEFCore/introduceEFCore/introduceEFCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/EF CORE/introduceEFCore/introduceEFCore/introduceEFCore.csproj -------------------------------------------------------------------------------- /HTML-CSS-JS/Bootstrap/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /HTML-CSS-JS/Bootstrap/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/HTML-CSS-JS/Bootstrap/index.html -------------------------------------------------------------------------------- /HTML-CSS-JS/Html5AndNext/1_Animasyon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/HTML-CSS-JS/Html5AndNext/1_Animasyon.html -------------------------------------------------------------------------------- /HTML-CSS-JS/Html5AndNext/2_Animasyon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/HTML-CSS-JS/Html5AndNext/2_Animasyon.html -------------------------------------------------------------------------------- /HTML-CSS-JS/Html5AndNext/3_Transition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/HTML-CSS-JS/Html5AndNext/3_Transition.html -------------------------------------------------------------------------------- /HTML-CSS-JS/Html5AndNext/4_Shadow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/HTML-CSS-JS/Html5AndNext/4_Shadow.html -------------------------------------------------------------------------------- /HTML-CSS-JS/Html5AndNext/forms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/HTML-CSS-JS/Html5AndNext/forms.html -------------------------------------------------------------------------------- /HTML-CSS-JS/Html5AndNext/grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/HTML-CSS-JS/Html5AndNext/grid.html -------------------------------------------------------------------------------- /HTML-CSS-JS/Html5AndNext/images/tisort.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/HTML-CSS-JS/Html5AndNext/images/tisort.jpg -------------------------------------------------------------------------------- /HTML-CSS-JS/Html5AndNext/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/HTML-CSS-JS/Html5AndNext/index.html -------------------------------------------------------------------------------- /HTML-CSS-JS/Html5AndNext/media.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/HTML-CSS-JS/Html5AndNext/media.html -------------------------------------------------------------------------------- /HTML-CSS-JS/Html5AndNext/media/audios/Sertap Erener - Ruya.MP3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/HTML-CSS-JS/Html5AndNext/media/audios/Sertap Erener - Ruya.MP3 -------------------------------------------------------------------------------- /HTML-CSS-JS/Html5AndNext/media/videos/samplevideo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/HTML-CSS-JS/Html5AndNext/media/videos/samplevideo.mp4 -------------------------------------------------------------------------------- /HTML-CSS-JS/Html5AndNext/media/videos/samplevideo.ogv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/HTML-CSS-JS/Html5AndNext/media/videos/samplevideo.ogv -------------------------------------------------------------------------------- /HTML-CSS-JS/Html5AndNext/media/videos/samplevideo.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/HTML-CSS-JS/Html5AndNext/media/videos/samplevideo.webm -------------------------------------------------------------------------------- /HTML-CSS-JS/IntroHtml/images/ucurtma.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/HTML-CSS-JS/IntroHtml/images/ucurtma.jpg -------------------------------------------------------------------------------- /HTML-CSS-JS/IntroHtml/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/HTML-CSS-JS/IntroHtml/index.html -------------------------------------------------------------------------------- /HTML-CSS-JS/IntroHtml/info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/HTML-CSS-JS/IntroHtml/info.html -------------------------------------------------------------------------------- /HTML-CSS-JS/IntroHtml/introCss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/HTML-CSS-JS/IntroHtml/introCss.html -------------------------------------------------------------------------------- /HTML-CSS-JS/IntroHtml/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/HTML-CSS-JS/IntroHtml/layout.html -------------------------------------------------------------------------------- /HTML-CSS-JS/IntroHtml/mockup.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/HTML-CSS-JS/IntroHtml/mockup.drawio -------------------------------------------------------------------------------- /HTML-CSS-JS/IntroHtml/styles/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/HTML-CSS-JS/IntroHtml/styles/layout.css -------------------------------------------------------------------------------- /HTML-CSS-JS/IntroHtml/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/HTML-CSS-JS/IntroHtml/styles/style.css -------------------------------------------------------------------------------- /HTML-CSS-JS/usingJavaScript/callbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/HTML-CSS-JS/usingJavaScript/callbacks.js -------------------------------------------------------------------------------- /HTML-CSS-JS/usingJavaScript/events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/HTML-CSS-JS/usingJavaScript/events.html -------------------------------------------------------------------------------- /HTML-CSS-JS/usingJavaScript/fetching.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/HTML-CSS-JS/usingJavaScript/fetching.html -------------------------------------------------------------------------------- /HTML-CSS-JS/usingJavaScript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/HTML-CSS-JS/usingJavaScript/index.html -------------------------------------------------------------------------------- /HTML-CSS-JS/usingJavaScript/oop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/HTML-CSS-JS/usingJavaScript/oop.html -------------------------------------------------------------------------------- /HTML-CSS-JS/usingJavaScript/swFetch.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HTML-CSS-JS/usingJavaScript/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/HTML-CSS-JS/usingJavaScript/validate.js -------------------------------------------------------------------------------- /HTML-CSS-JS/usingJavaScript/validation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/HTML-CSS-JS/usingJavaScript/validation.html -------------------------------------------------------------------------------- /T-SQL/dbScript.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/T-SQL/dbScript.sql -------------------------------------------------------------------------------- /T-SQL/queries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turkayurkmez/turkcellGY3/HEAD/T-SQL/queries.sql --------------------------------------------------------------------------------