├── .gitignore ├── .vs ├── AspNetCoreScheduleControl │ └── v16 │ │ └── .suo ├── ProjectSettings.json ├── VSWorkspaceState.json └── slnx.sqlite ├── DbScript.sql ├── README.md └── ScheduleControl ├── .vs └── ScheduleControl │ ├── DesignTimeBuild │ ├── .dtbcache │ └── .dtbcache.v2 │ ├── config │ └── applicationhost.config │ └── v16 │ └── .suo ├── ScheduleControl.BackgroundJob ├── HangfireDashboardAuthorizationFilter.cs ├── Managers │ ├── ContinuationJobs │ │ └── FinancialCashScheduleJobManager.cs │ ├── DelayedJobs │ │ └── UserRegisterScheduleJobManager.cs │ ├── FireAndForgetJobs │ │ ├── CurrencyScheduleJobManager.cs │ │ └── EmailSendingScheduleJobManager.cs │ └── RecurringJobs │ │ └── DataBaseBackupScheduleJobManager.cs ├── ScheduleControl.BackgroundJob.csproj ├── Schedules │ ├── ContinuationJobs.cs │ ├── DelayedJobs.cs │ ├── FireAndForgetJobs.cs │ └── RecurringJobs.cs ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── ScheduleControl.BackgroundJob.deps.json │ │ ├── ScheduleControl.BackgroundJob.dll │ │ ├── ScheduleControl.BackgroundJob.pdb │ │ ├── ScheduleControl.Business.dll │ │ ├── ScheduleControl.Business.pdb │ │ ├── ScheduleControl.Core.dll │ │ ├── ScheduleControl.Core.pdb │ │ ├── ScheduleControl.DataAccess.dll │ │ ├── ScheduleControl.DataAccess.pdb │ │ ├── ScheduleControl.Entities.dll │ │ └── ScheduleControl.Entities.pdb └── obj │ ├── Debug │ └── netcoreapp3.1 │ │ ├── ScheduleControl.BackgroundJob.AssemblyInfo.cs │ │ ├── ScheduleControl.BackgroundJob.AssemblyInfoInputs.cache │ │ ├── ScheduleControl.BackgroundJob.assets.cache │ │ ├── ScheduleControl.BackgroundJob.csproj.CopyComplete │ │ ├── ScheduleControl.BackgroundJob.csproj.CoreCompileInputs.cache │ │ ├── ScheduleControl.BackgroundJob.csproj.FileListAbsolute.txt │ │ ├── ScheduleControl.BackgroundJob.csprojAssemblyReference.cache │ │ ├── ScheduleControl.BackgroundJob.dll │ │ └── ScheduleControl.BackgroundJob.pdb │ ├── ScheduleControl.BackgroundJob.csproj.nuget.cache │ ├── ScheduleControl.BackgroundJob.csproj.nuget.dgspec.json │ ├── ScheduleControl.BackgroundJob.csproj.nuget.g.props │ ├── ScheduleControl.BackgroundJob.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── ScheduleControl.Business ├── Abstract │ ├── Auth │ │ └── IAuthService.cs │ ├── DatabaseOperation │ │ └── IDatabaseOptionService.cs │ ├── ICashTypeService.cs │ ├── ICashboxService.cs │ ├── ICurrencyService.cs │ ├── IFinancialCashService.cs │ ├── IUserService.cs │ └── Mail │ │ └── IMailService.cs ├── Concrete │ └── Managers │ │ ├── Auth │ │ └── AuthManager.cs │ │ ├── CashTypeManager.cs │ │ ├── CashboxManager.cs │ │ ├── CurrencyManager.cs │ │ ├── DatabaseOperation │ │ └── DatabaseOptionManager.cs │ │ ├── FinancialCashManager.cs │ │ ├── Mail │ │ └── MailManager.cs │ │ └── UserManager.cs ├── Consts │ └── DatabaseConsts.cs ├── ScheduleControl.Business.csproj ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── ScheduleControl.Business.deps.json │ │ ├── ScheduleControl.Business.dll │ │ ├── ScheduleControl.Business.pdb │ │ ├── ScheduleControl.Core.dll │ │ ├── ScheduleControl.Core.pdb │ │ ├── ScheduleControl.DataAccess.dll │ │ ├── ScheduleControl.DataAccess.pdb │ │ ├── ScheduleControl.Entities.dll │ │ └── ScheduleControl.Entities.pdb └── obj │ ├── Debug │ └── netcoreapp3.1 │ │ ├── ScheduleControl.Business.AssemblyInfo.cs │ │ ├── ScheduleControl.Business.AssemblyInfoInputs.cache │ │ ├── ScheduleControl.Business.assets.cache │ │ ├── ScheduleControl.Business.csproj.CopyComplete │ │ ├── ScheduleControl.Business.csproj.CoreCompileInputs.cache │ │ ├── ScheduleControl.Business.csproj.FileListAbsolute.txt │ │ ├── ScheduleControl.Business.csprojAssemblyReference.cache │ │ ├── ScheduleControl.Business.dll │ │ └── ScheduleControl.Business.pdb │ ├── ScheduleControl.Business.csproj.nuget.cache │ ├── ScheduleControl.Business.csproj.nuget.dgspec.json │ ├── ScheduleControl.Business.csproj.nuget.g.props │ ├── ScheduleControl.Business.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── ScheduleControl.Core ├── Consts │ └── AppRoles.cs ├── DataAccess │ ├── EntityFramework │ │ └── EfEntityRepositoryBase.cs │ └── IEntityRepository.cs ├── Entities │ ├── IDto.cs │ └── IEntity.cs ├── ScheduleControl.Core.csproj ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── ScheduleControl.Core.deps.json │ │ ├── ScheduleControl.Core.dll │ │ └── ScheduleControl.Core.pdb └── obj │ ├── Debug │ └── netcoreapp3.1 │ │ ├── ScheduleControl.Core.AssemblyInfo.cs │ │ ├── ScheduleControl.Core.AssemblyInfoInputs.cache │ │ ├── ScheduleControl.Core.assets.cache │ │ ├── ScheduleControl.Core.csproj.CoreCompileInputs.cache │ │ ├── ScheduleControl.Core.csproj.FileListAbsolute.txt │ │ ├── ScheduleControl.Core.csprojAssemblyReference.cache │ │ ├── ScheduleControl.Core.dll │ │ └── ScheduleControl.Core.pdb │ ├── ScheduleControl.Core.csproj.nuget.cache │ ├── ScheduleControl.Core.csproj.nuget.dgspec.json │ ├── ScheduleControl.Core.csproj.nuget.g.props │ ├── ScheduleControl.Core.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── ScheduleControl.DataAccess ├── Abstract │ ├── ICashTypeDal.cs │ ├── ICashboxDal.cs │ ├── ICurrencyDal.cs │ ├── IFinancialCashDal.cs │ └── IUserDal.cs ├── Concrete │ └── EntityFramework │ │ ├── Context │ │ └── ScheduleProjectDbContext.cs │ │ ├── EfCashTypeDal.cs │ │ ├── EfCashboxDal.cs │ │ ├── EfCurrencyDal.cs │ │ ├── EfFinancialCashDal.cs │ │ └── EfUserDal.cs ├── ScheduleControl.DataAccess.csproj ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── ScheduleControl.Core.dll │ │ ├── ScheduleControl.Core.pdb │ │ ├── ScheduleControl.DataAccess.deps.json │ │ ├── ScheduleControl.DataAccess.dll │ │ ├── ScheduleControl.DataAccess.pdb │ │ ├── ScheduleControl.Entities.dll │ │ └── ScheduleControl.Entities.pdb └── obj │ ├── Debug │ └── netcoreapp3.1 │ │ ├── ScheduleControl.DataAccess.AssemblyInfo.cs │ │ ├── ScheduleControl.DataAccess.AssemblyInfoInputs.cache │ │ ├── ScheduleControl.DataAccess.assets.cache │ │ ├── ScheduleControl.DataAccess.csproj.CopyComplete │ │ ├── ScheduleControl.DataAccess.csproj.CoreCompileInputs.cache │ │ ├── ScheduleControl.DataAccess.csproj.FileListAbsolute.txt │ │ ├── ScheduleControl.DataAccess.csprojAssemblyReference.cache │ │ ├── ScheduleControl.DataAccess.dll │ │ └── ScheduleControl.DataAccess.pdb │ ├── ScheduleControl.DataAccess.csproj.nuget.cache │ ├── ScheduleControl.DataAccess.csproj.nuget.dgspec.json │ ├── ScheduleControl.DataAccess.csproj.nuget.g.props │ ├── ScheduleControl.DataAccess.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── ScheduleControl.Entities ├── Dtos │ ├── Account │ │ ├── UserForLoginDto.cs │ │ └── UserForRegisterDto.cs │ ├── Cashbox │ │ └── CashboxInputDto.cs │ ├── Database │ │ └── DatabaseOptionDto.cs │ └── Mail │ │ ├── MailMessageDto.cs │ │ └── SmtpConfigDto.cs ├── Models │ ├── CashType.cs │ ├── Cashbox.cs │ ├── Currency.cs │ ├── FinancialCash.cs │ └── User.cs ├── ScheduleControl.Entities.csproj ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── ScheduleControl.Core.dll │ │ ├── ScheduleControl.Core.pdb │ │ ├── ScheduleControl.Entities.deps.json │ │ ├── ScheduleControl.Entities.dll │ │ └── ScheduleControl.Entities.pdb └── obj │ ├── Debug │ └── netcoreapp3.1 │ │ ├── ScheduleControl.Entities.AssemblyInfo.cs │ │ ├── ScheduleControl.Entities.AssemblyInfoInputs.cache │ │ ├── ScheduleControl.Entities.assets.cache │ │ ├── ScheduleControl.Entities.csproj.CopyComplete │ │ ├── ScheduleControl.Entities.csproj.CoreCompileInputs.cache │ │ ├── ScheduleControl.Entities.csproj.FileListAbsolute.txt │ │ ├── ScheduleControl.Entities.csprojAssemblyReference.cache │ │ ├── ScheduleControl.Entities.dll │ │ └── ScheduleControl.Entities.pdb │ ├── ScheduleControl.Entities.csproj.nuget.cache │ ├── ScheduleControl.Entities.csproj.nuget.dgspec.json │ ├── ScheduleControl.Entities.csproj.nuget.g.props │ ├── ScheduleControl.Entities.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache ├── ScheduleControl.WebAPI ├── Controllers │ └── WeatherForecastController.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── ScheduleControl.WebAPI.csproj ├── Startup.cs ├── Startup1.cs ├── WeatherForecast.cs ├── appsettings.Development.json ├── appsettings.json ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── appsettings.Development.json │ │ └── appsettings.json └── obj │ ├── Debug │ └── netcoreapp3.1 │ │ ├── ScheduleControl.WebAPI.AssemblyInfo.cs │ │ ├── ScheduleControl.WebAPI.AssemblyInfoInputs.cache │ │ ├── ScheduleControl.WebAPI.RazorTargetAssemblyInfo.cache │ │ ├── ScheduleControl.WebAPI.assets.cache │ │ ├── ScheduleControl.WebAPI.csproj.FileListAbsolute.txt │ │ ├── ScheduleControl.WebAPI.csprojAssemblyReference.cache │ │ └── staticwebassets │ │ ├── ScheduleControl.WebAPI.StaticWebAssets.Manifest.cache │ │ └── ScheduleControl.WebAPI.StaticWebAssets.xml │ ├── ScheduleControl.WebAPI.csproj.nuget.cache │ ├── ScheduleControl.WebAPI.csproj.nuget.dgspec.json │ ├── ScheduleControl.WebAPI.csproj.nuget.g.props │ ├── ScheduleControl.WebAPI.csproj.nuget.g.targets │ └── project.assets.json ├── ScheduleControl.WebUI ├── Controllers │ ├── AccountController.cs │ ├── CashboxController.cs │ └── HomeController.cs ├── Models │ └── ErrorViewModel.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── ScheduleControl.WebUI.csproj ├── ScheduleControl.WebUI.csproj.user ├── Startup.cs ├── ViewModels │ ├── AuthViewModel.cs │ └── CashboxInputViewModel.cs ├── Views │ ├── Account │ │ └── _Register.cshtml │ ├── Cashbox │ │ └── CashInsert.cshtml │ ├── Home │ │ ├── HangfireAbout.cshtml │ │ ├── Index.cshtml │ │ └── Privacy.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── Hangfire.AspNetCore.dll │ │ ├── Hangfire.Core.dll │ │ ├── Hangfire.SqlServer.dll │ │ ├── Microsoft.AspNetCore.Razor.Language.dll │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ ├── Microsoft.Bcl.HashCode.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.dll │ │ ├── Microsoft.CodeAnalysis.Razor.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.dll │ │ ├── Microsoft.CodeAnalysis.dll │ │ ├── Microsoft.Data.SqlClient.dll │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll │ │ ├── Microsoft.EntityFrameworkCore.dll │ │ ├── Microsoft.Extensions.Caching.Abstractions.dll │ │ ├── Microsoft.Extensions.Caching.Memory.dll │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ ├── Microsoft.Extensions.Configuration.Binder.dll │ │ ├── Microsoft.Extensions.Configuration.dll │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ ├── Microsoft.Extensions.Logging.dll │ │ ├── Microsoft.Extensions.Options.dll │ │ ├── Microsoft.Extensions.Primitives.dll │ │ ├── Microsoft.Identity.Client.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Core.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGeneration.dll │ │ ├── Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll │ │ ├── Newtonsoft.Json.dll │ │ ├── NuGet.Frameworks.dll │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── ScheduleControl.BackgroundJob.dll │ │ ├── ScheduleControl.BackgroundJob.pdb │ │ ├── ScheduleControl.Business.dll │ │ ├── ScheduleControl.Business.pdb │ │ ├── ScheduleControl.Core.dll │ │ ├── ScheduleControl.Core.pdb │ │ ├── ScheduleControl.DataAccess.dll │ │ ├── ScheduleControl.DataAccess.pdb │ │ ├── ScheduleControl.Entities.dll │ │ ├── ScheduleControl.Entities.pdb │ │ ├── ScheduleControl.WebUI.Views.dll │ │ ├── ScheduleControl.WebUI.Views.pdb │ │ ├── ScheduleControl.WebUI.deps.json │ │ ├── ScheduleControl.WebUI.dll │ │ ├── ScheduleControl.WebUI.exe │ │ ├── ScheduleControl.WebUI.pdb │ │ ├── ScheduleControl.WebUI.runtimeconfig.dev.json │ │ ├── ScheduleControl.WebUI.runtimeconfig.json │ │ ├── System.Composition.AttributedModel.dll │ │ ├── System.Composition.Convention.dll │ │ ├── System.Composition.Hosting.dll │ │ ├── System.Composition.Runtime.dll │ │ ├── System.Composition.TypedParts.dll │ │ ├── System.Configuration.ConfigurationManager.dll │ │ ├── System.Data.SqlClient.dll │ │ ├── System.Runtime.Caching.dll │ │ ├── System.Security.Cryptography.ProtectedData.dll │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── cs │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── de │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── dotnet-aspnet-codegenerator-design.dll │ │ ├── es │ │ ├── Hangfire.Core.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── fr │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── it │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── ja │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── ko │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── libman.json │ │ ├── nl │ │ └── Hangfire.Core.resources.dll │ │ ├── pl │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── pt-BR │ │ ├── Hangfire.Core.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── ru │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── runtimes │ │ ├── unix │ │ │ └── lib │ │ │ │ ├── netcoreapp2.0 │ │ │ │ └── System.Runtime.Caching.dll │ │ │ │ ├── netcoreapp2.1 │ │ │ │ └── Microsoft.Data.SqlClient.dll │ │ │ │ └── netstandard2.0 │ │ │ │ └── System.Data.SqlClient.dll │ │ ├── win-arm64 │ │ │ └── native │ │ │ │ └── sni.dll │ │ ├── win-x64 │ │ │ └── native │ │ │ │ └── sni.dll │ │ ├── win-x86 │ │ │ └── native │ │ │ │ └── sni.dll │ │ └── win │ │ │ └── lib │ │ │ ├── netcoreapp2.0 │ │ │ └── System.Runtime.Caching.dll │ │ │ ├── netcoreapp2.1 │ │ │ └── Microsoft.Data.SqlClient.dll │ │ │ └── netstandard2.0 │ │ │ ├── System.Data.SqlClient.dll │ │ │ └── System.Security.Cryptography.ProtectedData.dll │ │ ├── tr │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── zh-Hans │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── zh-Hant │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── zh-TW │ │ └── Hangfire.Core.resources.dll │ │ └── zh │ │ └── Hangfire.Core.resources.dll ├── libman.json ├── obj │ ├── Debug │ │ └── netcoreapp3.1 │ │ │ ├── Razor │ │ │ └── Views │ │ │ │ ├── Account │ │ │ │ └── _Register.cshtml.g.cs │ │ │ │ ├── Cashbox │ │ │ │ └── CashInsert.cshtml.g.cs │ │ │ │ ├── Home │ │ │ │ ├── HangfireAbout.cshtml.g.cs │ │ │ │ ├── Index.cshtml.g.cs │ │ │ │ └── Privacy.cshtml.g.cs │ │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml.g.cs │ │ │ │ ├── _Layout.cshtml.g.cs │ │ │ │ └── _ValidationScriptsPartial.cshtml.g.cs │ │ │ │ ├── _ViewImports.cshtml.g.cs │ │ │ │ └── _ViewStart.cshtml.g.cs │ │ │ ├── ScheduleControl.WebUI.AssemblyInfo.cs │ │ │ ├── ScheduleControl.WebUI.AssemblyInfoInputs.cache │ │ │ ├── ScheduleControl.WebUI.MvcApplicationPartsAssemblyInfo.cache │ │ │ ├── ScheduleControl.WebUI.RazorAssemblyInfo.cache │ │ │ ├── ScheduleControl.WebUI.RazorAssemblyInfo.cs │ │ │ ├── ScheduleControl.WebUI.RazorCoreGenerate.cache │ │ │ ├── ScheduleControl.WebUI.RazorTargetAssemblyInfo.cache │ │ │ ├── ScheduleControl.WebUI.RazorTargetAssemblyInfo.cs │ │ │ ├── ScheduleControl.WebUI.TagHelpers.input.cache │ │ │ ├── ScheduleControl.WebUI.TagHelpers.output.cache │ │ │ ├── ScheduleControl.WebUI.Views.dll │ │ │ ├── ScheduleControl.WebUI.Views.pdb │ │ │ ├── ScheduleControl.WebUI.assets.cache │ │ │ ├── ScheduleControl.WebUI.csproj.CopyComplete │ │ │ ├── ScheduleControl.WebUI.csproj.CoreCompileInputs.cache │ │ │ ├── ScheduleControl.WebUI.csproj.FileListAbsolute.txt │ │ │ ├── ScheduleControl.WebUI.csprojAssemblyReference.cache │ │ │ ├── ScheduleControl.WebUI.dll │ │ │ ├── ScheduleControl.WebUI.exe │ │ │ ├── ScheduleControl.WebUI.genruntimeconfig.cache │ │ │ ├── ScheduleControl.WebUI.pdb │ │ │ └── staticwebassets │ │ │ ├── ScheduleControl.WebUI.StaticWebAssets.Manifest.cache │ │ │ └── ScheduleControl.WebUI.StaticWebAssets.xml │ ├── ScheduleControl.WebUI.csproj.nuget.cache │ ├── ScheduleControl.WebUI.csproj.nuget.dgspec.json │ ├── ScheduleControl.WebUI.csproj.nuget.g.props │ ├── ScheduleControl.WebUI.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache └── 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-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.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 └── ScheduleControl.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/AspNetCoreScheduleControl/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/.vs/AspNetCoreScheduleControl/v16/.suo -------------------------------------------------------------------------------- /.vs/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": null 3 | } -------------------------------------------------------------------------------- /.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/.vs/VSWorkspaceState.json -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/.vs/slnx.sqlite -------------------------------------------------------------------------------- /DbScript.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/DbScript.sql -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/README.md -------------------------------------------------------------------------------- /ScheduleControl/.vs/ScheduleControl/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/.vs/ScheduleControl/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /ScheduleControl/.vs/ScheduleControl/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/.vs/ScheduleControl/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /ScheduleControl/.vs/ScheduleControl/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/.vs/ScheduleControl/config/applicationhost.config -------------------------------------------------------------------------------- /ScheduleControl/.vs/ScheduleControl/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/.vs/ScheduleControl/v16/.suo -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.BackgroundJob/HangfireDashboardAuthorizationFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.BackgroundJob/HangfireDashboardAuthorizationFilter.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.BackgroundJob/Managers/ContinuationJobs/FinancialCashScheduleJobManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.BackgroundJob/Managers/ContinuationJobs/FinancialCashScheduleJobManager.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.BackgroundJob/Managers/DelayedJobs/UserRegisterScheduleJobManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.BackgroundJob/Managers/DelayedJobs/UserRegisterScheduleJobManager.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.BackgroundJob/Managers/FireAndForgetJobs/CurrencyScheduleJobManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.BackgroundJob/Managers/FireAndForgetJobs/CurrencyScheduleJobManager.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.BackgroundJob/Managers/FireAndForgetJobs/EmailSendingScheduleJobManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.BackgroundJob/Managers/FireAndForgetJobs/EmailSendingScheduleJobManager.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.BackgroundJob/Managers/RecurringJobs/DataBaseBackupScheduleJobManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.BackgroundJob/Managers/RecurringJobs/DataBaseBackupScheduleJobManager.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.BackgroundJob/ScheduleControl.BackgroundJob.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.BackgroundJob/ScheduleControl.BackgroundJob.csproj -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.BackgroundJob/Schedules/ContinuationJobs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.BackgroundJob/Schedules/ContinuationJobs.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.BackgroundJob/Schedules/DelayedJobs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.BackgroundJob/Schedules/DelayedJobs.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.BackgroundJob/Schedules/FireAndForgetJobs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.BackgroundJob/Schedules/FireAndForgetJobs.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.BackgroundJob/Schedules/RecurringJobs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.BackgroundJob/Schedules/RecurringJobs.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.BackgroundJob/bin/Debug/netcoreapp3.1/ScheduleControl.BackgroundJob.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.BackgroundJob/bin/Debug/netcoreapp3.1/ScheduleControl.BackgroundJob.deps.json -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.BackgroundJob/bin/Debug/netcoreapp3.1/ScheduleControl.BackgroundJob.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.BackgroundJob/bin/Debug/netcoreapp3.1/ScheduleControl.BackgroundJob.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.BackgroundJob/bin/Debug/netcoreapp3.1/ScheduleControl.BackgroundJob.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.BackgroundJob/bin/Debug/netcoreapp3.1/ScheduleControl.BackgroundJob.pdb -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.BackgroundJob/bin/Debug/netcoreapp3.1/ScheduleControl.Business.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.BackgroundJob/bin/Debug/netcoreapp3.1/ScheduleControl.Business.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.BackgroundJob/bin/Debug/netcoreapp3.1/ScheduleControl.Business.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.BackgroundJob/bin/Debug/netcoreapp3.1/ScheduleControl.Business.pdb -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.BackgroundJob/bin/Debug/netcoreapp3.1/ScheduleControl.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.BackgroundJob/bin/Debug/netcoreapp3.1/ScheduleControl.Core.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.BackgroundJob/bin/Debug/netcoreapp3.1/ScheduleControl.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.BackgroundJob/bin/Debug/netcoreapp3.1/ScheduleControl.Core.pdb -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.BackgroundJob/bin/Debug/netcoreapp3.1/ScheduleControl.DataAccess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.BackgroundJob/bin/Debug/netcoreapp3.1/ScheduleControl.DataAccess.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.BackgroundJob/bin/Debug/netcoreapp3.1/ScheduleControl.DataAccess.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.BackgroundJob/bin/Debug/netcoreapp3.1/ScheduleControl.DataAccess.pdb -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.BackgroundJob/bin/Debug/netcoreapp3.1/ScheduleControl.Entities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.BackgroundJob/bin/Debug/netcoreapp3.1/ScheduleControl.Entities.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.BackgroundJob/bin/Debug/netcoreapp3.1/ScheduleControl.Entities.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.BackgroundJob/bin/Debug/netcoreapp3.1/ScheduleControl.Entities.pdb -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.BackgroundJob/obj/Debug/netcoreapp3.1/ScheduleControl.BackgroundJob.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.BackgroundJob/obj/Debug/netcoreapp3.1/ScheduleControl.BackgroundJob.AssemblyInfo.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.BackgroundJob/obj/Debug/netcoreapp3.1/ScheduleControl.BackgroundJob.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 5d263e08844d910c386907a990568f260376c7fb 2 | -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.BackgroundJob/obj/Debug/netcoreapp3.1/ScheduleControl.BackgroundJob.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.BackgroundJob/obj/Debug/netcoreapp3.1/ScheduleControl.BackgroundJob.assets.cache -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.BackgroundJob/obj/Debug/netcoreapp3.1/ScheduleControl.BackgroundJob.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.BackgroundJob/obj/Debug/netcoreapp3.1/ScheduleControl.BackgroundJob.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3422ec933495a14268b225f611d0c279ebeae677 2 | -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.BackgroundJob/obj/Debug/netcoreapp3.1/ScheduleControl.BackgroundJob.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.BackgroundJob/obj/Debug/netcoreapp3.1/ScheduleControl.BackgroundJob.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.BackgroundJob/obj/Debug/netcoreapp3.1/ScheduleControl.BackgroundJob.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.BackgroundJob/obj/Debug/netcoreapp3.1/ScheduleControl.BackgroundJob.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.BackgroundJob/obj/Debug/netcoreapp3.1/ScheduleControl.BackgroundJob.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.BackgroundJob/obj/Debug/netcoreapp3.1/ScheduleControl.BackgroundJob.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.BackgroundJob/obj/Debug/netcoreapp3.1/ScheduleControl.BackgroundJob.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.BackgroundJob/obj/Debug/netcoreapp3.1/ScheduleControl.BackgroundJob.pdb -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.BackgroundJob/obj/ScheduleControl.BackgroundJob.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.BackgroundJob/obj/ScheduleControl.BackgroundJob.csproj.nuget.cache -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.BackgroundJob/obj/ScheduleControl.BackgroundJob.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.BackgroundJob/obj/ScheduleControl.BackgroundJob.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.BackgroundJob/obj/ScheduleControl.BackgroundJob.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.BackgroundJob/obj/ScheduleControl.BackgroundJob.csproj.nuget.g.props -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.BackgroundJob/obj/ScheduleControl.BackgroundJob.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.BackgroundJob/obj/ScheduleControl.BackgroundJob.csproj.nuget.g.targets -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.BackgroundJob/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.BackgroundJob/obj/project.assets.json -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.BackgroundJob/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.BackgroundJob/obj/project.nuget.cache -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/Abstract/Auth/IAuthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Business/Abstract/Auth/IAuthService.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/Abstract/DatabaseOperation/IDatabaseOptionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Business/Abstract/DatabaseOperation/IDatabaseOptionService.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/Abstract/ICashTypeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Business/Abstract/ICashTypeService.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/Abstract/ICashboxService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Business/Abstract/ICashboxService.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/Abstract/ICurrencyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Business/Abstract/ICurrencyService.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/Abstract/IFinancialCashService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Business/Abstract/IFinancialCashService.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/Abstract/IUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Business/Abstract/IUserService.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/Abstract/Mail/IMailService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Business/Abstract/Mail/IMailService.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/Concrete/Managers/Auth/AuthManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Business/Concrete/Managers/Auth/AuthManager.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/Concrete/Managers/CashTypeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Business/Concrete/Managers/CashTypeManager.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/Concrete/Managers/CashboxManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Business/Concrete/Managers/CashboxManager.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/Concrete/Managers/CurrencyManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Business/Concrete/Managers/CurrencyManager.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/Concrete/Managers/DatabaseOperation/DatabaseOptionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Business/Concrete/Managers/DatabaseOperation/DatabaseOptionManager.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/Concrete/Managers/FinancialCashManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Business/Concrete/Managers/FinancialCashManager.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/Concrete/Managers/Mail/MailManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Business/Concrete/Managers/Mail/MailManager.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/Concrete/Managers/UserManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Business/Concrete/Managers/UserManager.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/Consts/DatabaseConsts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Business/Consts/DatabaseConsts.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/ScheduleControl.Business.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Business/ScheduleControl.Business.csproj -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/bin/Debug/netcoreapp3.1/ScheduleControl.Business.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Business/bin/Debug/netcoreapp3.1/ScheduleControl.Business.deps.json -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/bin/Debug/netcoreapp3.1/ScheduleControl.Business.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Business/bin/Debug/netcoreapp3.1/ScheduleControl.Business.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/bin/Debug/netcoreapp3.1/ScheduleControl.Business.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Business/bin/Debug/netcoreapp3.1/ScheduleControl.Business.pdb -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/bin/Debug/netcoreapp3.1/ScheduleControl.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Business/bin/Debug/netcoreapp3.1/ScheduleControl.Core.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/bin/Debug/netcoreapp3.1/ScheduleControl.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Business/bin/Debug/netcoreapp3.1/ScheduleControl.Core.pdb -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/bin/Debug/netcoreapp3.1/ScheduleControl.DataAccess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Business/bin/Debug/netcoreapp3.1/ScheduleControl.DataAccess.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/bin/Debug/netcoreapp3.1/ScheduleControl.DataAccess.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Business/bin/Debug/netcoreapp3.1/ScheduleControl.DataAccess.pdb -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/bin/Debug/netcoreapp3.1/ScheduleControl.Entities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Business/bin/Debug/netcoreapp3.1/ScheduleControl.Entities.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/bin/Debug/netcoreapp3.1/ScheduleControl.Entities.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Business/bin/Debug/netcoreapp3.1/ScheduleControl.Entities.pdb -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/obj/Debug/netcoreapp3.1/ScheduleControl.Business.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Business/obj/Debug/netcoreapp3.1/ScheduleControl.Business.AssemblyInfo.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/obj/Debug/netcoreapp3.1/ScheduleControl.Business.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 70c4dbac2f3196826e84877c2dd2c984e9404dda 2 | -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/obj/Debug/netcoreapp3.1/ScheduleControl.Business.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Business/obj/Debug/netcoreapp3.1/ScheduleControl.Business.assets.cache -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/obj/Debug/netcoreapp3.1/ScheduleControl.Business.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/obj/Debug/netcoreapp3.1/ScheduleControl.Business.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | fd407da48df797789cb0ab8c023db849926cab99 2 | -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/obj/Debug/netcoreapp3.1/ScheduleControl.Business.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Business/obj/Debug/netcoreapp3.1/ScheduleControl.Business.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/obj/Debug/netcoreapp3.1/ScheduleControl.Business.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Business/obj/Debug/netcoreapp3.1/ScheduleControl.Business.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/obj/Debug/netcoreapp3.1/ScheduleControl.Business.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Business/obj/Debug/netcoreapp3.1/ScheduleControl.Business.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/obj/Debug/netcoreapp3.1/ScheduleControl.Business.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Business/obj/Debug/netcoreapp3.1/ScheduleControl.Business.pdb -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/obj/ScheduleControl.Business.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Business/obj/ScheduleControl.Business.csproj.nuget.cache -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/obj/ScheduleControl.Business.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Business/obj/ScheduleControl.Business.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/obj/ScheduleControl.Business.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Business/obj/ScheduleControl.Business.csproj.nuget.g.props -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/obj/ScheduleControl.Business.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Business/obj/ScheduleControl.Business.csproj.nuget.g.targets -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Business/obj/project.assets.json -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Business/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Business/obj/project.nuget.cache -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Core/Consts/AppRoles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Core/Consts/AppRoles.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Core/DataAccess/EntityFramework/EfEntityRepositoryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Core/DataAccess/EntityFramework/EfEntityRepositoryBase.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Core/DataAccess/IEntityRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Core/DataAccess/IEntityRepository.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Core/Entities/IDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Core/Entities/IDto.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Core/Entities/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Core/Entities/IEntity.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Core/ScheduleControl.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Core/ScheduleControl.Core.csproj -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Core/bin/Debug/netcoreapp3.1/ScheduleControl.Core.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Core/bin/Debug/netcoreapp3.1/ScheduleControl.Core.deps.json -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Core/bin/Debug/netcoreapp3.1/ScheduleControl.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Core/bin/Debug/netcoreapp3.1/ScheduleControl.Core.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Core/bin/Debug/netcoreapp3.1/ScheduleControl.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Core/bin/Debug/netcoreapp3.1/ScheduleControl.Core.pdb -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Core/obj/Debug/netcoreapp3.1/ScheduleControl.Core.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Core/obj/Debug/netcoreapp3.1/ScheduleControl.Core.AssemblyInfo.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Core/obj/Debug/netcoreapp3.1/ScheduleControl.Core.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 7c2ba071c0d02bce61dbaf57bf264094dd75404d 2 | -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Core/obj/Debug/netcoreapp3.1/ScheduleControl.Core.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Core/obj/Debug/netcoreapp3.1/ScheduleControl.Core.assets.cache -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Core/obj/Debug/netcoreapp3.1/ScheduleControl.Core.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 56d309b435befeb990aef68eb3ed16c72a47ee59 2 | -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Core/obj/Debug/netcoreapp3.1/ScheduleControl.Core.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Core/obj/Debug/netcoreapp3.1/ScheduleControl.Core.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Core/obj/Debug/netcoreapp3.1/ScheduleControl.Core.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Core/obj/Debug/netcoreapp3.1/ScheduleControl.Core.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Core/obj/Debug/netcoreapp3.1/ScheduleControl.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Core/obj/Debug/netcoreapp3.1/ScheduleControl.Core.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Core/obj/Debug/netcoreapp3.1/ScheduleControl.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Core/obj/Debug/netcoreapp3.1/ScheduleControl.Core.pdb -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Core/obj/ScheduleControl.Core.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Core/obj/ScheduleControl.Core.csproj.nuget.cache -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Core/obj/ScheduleControl.Core.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Core/obj/ScheduleControl.Core.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Core/obj/ScheduleControl.Core.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Core/obj/ScheduleControl.Core.csproj.nuget.g.props -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Core/obj/ScheduleControl.Core.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Core/obj/ScheduleControl.Core.csproj.nuget.g.targets -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Core/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Core/obj/project.assets.json -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Core/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Core/obj/project.nuget.cache -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.DataAccess/Abstract/ICashTypeDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.DataAccess/Abstract/ICashTypeDal.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.DataAccess/Abstract/ICashboxDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.DataAccess/Abstract/ICashboxDal.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.DataAccess/Abstract/ICurrencyDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.DataAccess/Abstract/ICurrencyDal.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.DataAccess/Abstract/IFinancialCashDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.DataAccess/Abstract/IFinancialCashDal.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.DataAccess/Abstract/IUserDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.DataAccess/Abstract/IUserDal.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.DataAccess/Concrete/EntityFramework/Context/ScheduleProjectDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.DataAccess/Concrete/EntityFramework/Context/ScheduleProjectDbContext.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.DataAccess/Concrete/EntityFramework/EfCashTypeDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.DataAccess/Concrete/EntityFramework/EfCashTypeDal.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.DataAccess/Concrete/EntityFramework/EfCashboxDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.DataAccess/Concrete/EntityFramework/EfCashboxDal.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.DataAccess/Concrete/EntityFramework/EfCurrencyDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.DataAccess/Concrete/EntityFramework/EfCurrencyDal.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.DataAccess/Concrete/EntityFramework/EfFinancialCashDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.DataAccess/Concrete/EntityFramework/EfFinancialCashDal.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.DataAccess/Concrete/EntityFramework/EfUserDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.DataAccess/Concrete/EntityFramework/EfUserDal.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.DataAccess/ScheduleControl.DataAccess.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.DataAccess/ScheduleControl.DataAccess.csproj -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.DataAccess/bin/Debug/netcoreapp3.1/ScheduleControl.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.DataAccess/bin/Debug/netcoreapp3.1/ScheduleControl.Core.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.DataAccess/bin/Debug/netcoreapp3.1/ScheduleControl.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.DataAccess/bin/Debug/netcoreapp3.1/ScheduleControl.Core.pdb -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.DataAccess/bin/Debug/netcoreapp3.1/ScheduleControl.DataAccess.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.DataAccess/bin/Debug/netcoreapp3.1/ScheduleControl.DataAccess.deps.json -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.DataAccess/bin/Debug/netcoreapp3.1/ScheduleControl.DataAccess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.DataAccess/bin/Debug/netcoreapp3.1/ScheduleControl.DataAccess.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.DataAccess/bin/Debug/netcoreapp3.1/ScheduleControl.DataAccess.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.DataAccess/bin/Debug/netcoreapp3.1/ScheduleControl.DataAccess.pdb -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.DataAccess/bin/Debug/netcoreapp3.1/ScheduleControl.Entities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.DataAccess/bin/Debug/netcoreapp3.1/ScheduleControl.Entities.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.DataAccess/bin/Debug/netcoreapp3.1/ScheduleControl.Entities.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.DataAccess/bin/Debug/netcoreapp3.1/ScheduleControl.Entities.pdb -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.DataAccess/obj/Debug/netcoreapp3.1/ScheduleControl.DataAccess.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.DataAccess/obj/Debug/netcoreapp3.1/ScheduleControl.DataAccess.AssemblyInfo.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.DataAccess/obj/Debug/netcoreapp3.1/ScheduleControl.DataAccess.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | df13d167c4f1b5ccb0cd5379c7c6373ede010781 2 | -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.DataAccess/obj/Debug/netcoreapp3.1/ScheduleControl.DataAccess.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.DataAccess/obj/Debug/netcoreapp3.1/ScheduleControl.DataAccess.assets.cache -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.DataAccess/obj/Debug/netcoreapp3.1/ScheduleControl.DataAccess.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.DataAccess/obj/Debug/netcoreapp3.1/ScheduleControl.DataAccess.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.DataAccess/obj/Debug/netcoreapp3.1/ScheduleControl.DataAccess.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.DataAccess/obj/Debug/netcoreapp3.1/ScheduleControl.DataAccess.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.DataAccess/obj/Debug/netcoreapp3.1/ScheduleControl.DataAccess.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.DataAccess/obj/Debug/netcoreapp3.1/ScheduleControl.DataAccess.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.DataAccess/obj/Debug/netcoreapp3.1/ScheduleControl.DataAccess.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.DataAccess/obj/Debug/netcoreapp3.1/ScheduleControl.DataAccess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.DataAccess/obj/Debug/netcoreapp3.1/ScheduleControl.DataAccess.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.DataAccess/obj/Debug/netcoreapp3.1/ScheduleControl.DataAccess.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.DataAccess/obj/Debug/netcoreapp3.1/ScheduleControl.DataAccess.pdb -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.DataAccess/obj/ScheduleControl.DataAccess.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.DataAccess/obj/ScheduleControl.DataAccess.csproj.nuget.cache -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.DataAccess/obj/ScheduleControl.DataAccess.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.DataAccess/obj/ScheduleControl.DataAccess.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.DataAccess/obj/ScheduleControl.DataAccess.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.DataAccess/obj/ScheduleControl.DataAccess.csproj.nuget.g.props -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.DataAccess/obj/ScheduleControl.DataAccess.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.DataAccess/obj/ScheduleControl.DataAccess.csproj.nuget.g.targets -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.DataAccess/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.DataAccess/obj/project.assets.json -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.DataAccess/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.DataAccess/obj/project.nuget.cache -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Entities/Dtos/Account/UserForLoginDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Entities/Dtos/Account/UserForLoginDto.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Entities/Dtos/Account/UserForRegisterDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Entities/Dtos/Account/UserForRegisterDto.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Entities/Dtos/Cashbox/CashboxInputDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Entities/Dtos/Cashbox/CashboxInputDto.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Entities/Dtos/Database/DatabaseOptionDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Entities/Dtos/Database/DatabaseOptionDto.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Entities/Dtos/Mail/MailMessageDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Entities/Dtos/Mail/MailMessageDto.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Entities/Dtos/Mail/SmtpConfigDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Entities/Dtos/Mail/SmtpConfigDto.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Entities/Models/CashType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Entities/Models/CashType.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Entities/Models/Cashbox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Entities/Models/Cashbox.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Entities/Models/Currency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Entities/Models/Currency.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Entities/Models/FinancialCash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Entities/Models/FinancialCash.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Entities/Models/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Entities/Models/User.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Entities/ScheduleControl.Entities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Entities/ScheduleControl.Entities.csproj -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Entities/bin/Debug/netcoreapp3.1/ScheduleControl.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Entities/bin/Debug/netcoreapp3.1/ScheduleControl.Core.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Entities/bin/Debug/netcoreapp3.1/ScheduleControl.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Entities/bin/Debug/netcoreapp3.1/ScheduleControl.Core.pdb -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Entities/bin/Debug/netcoreapp3.1/ScheduleControl.Entities.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Entities/bin/Debug/netcoreapp3.1/ScheduleControl.Entities.deps.json -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Entities/bin/Debug/netcoreapp3.1/ScheduleControl.Entities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Entities/bin/Debug/netcoreapp3.1/ScheduleControl.Entities.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Entities/bin/Debug/netcoreapp3.1/ScheduleControl.Entities.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Entities/bin/Debug/netcoreapp3.1/ScheduleControl.Entities.pdb -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Entities/obj/Debug/netcoreapp3.1/ScheduleControl.Entities.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Entities/obj/Debug/netcoreapp3.1/ScheduleControl.Entities.AssemblyInfo.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Entities/obj/Debug/netcoreapp3.1/ScheduleControl.Entities.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Entities/obj/Debug/netcoreapp3.1/ScheduleControl.Entities.AssemblyInfoInputs.cache -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Entities/obj/Debug/netcoreapp3.1/ScheduleControl.Entities.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Entities/obj/Debug/netcoreapp3.1/ScheduleControl.Entities.assets.cache -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Entities/obj/Debug/netcoreapp3.1/ScheduleControl.Entities.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Entities/obj/Debug/netcoreapp3.1/ScheduleControl.Entities.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 8cdd470e625c4e16acd5d6447fdfb71e7bd82996 2 | -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Entities/obj/Debug/netcoreapp3.1/ScheduleControl.Entities.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Entities/obj/Debug/netcoreapp3.1/ScheduleControl.Entities.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Entities/obj/Debug/netcoreapp3.1/ScheduleControl.Entities.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Entities/obj/Debug/netcoreapp3.1/ScheduleControl.Entities.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Entities/obj/Debug/netcoreapp3.1/ScheduleControl.Entities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Entities/obj/Debug/netcoreapp3.1/ScheduleControl.Entities.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Entities/obj/Debug/netcoreapp3.1/ScheduleControl.Entities.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Entities/obj/Debug/netcoreapp3.1/ScheduleControl.Entities.pdb -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Entities/obj/ScheduleControl.Entities.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Entities/obj/ScheduleControl.Entities.csproj.nuget.cache -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Entities/obj/ScheduleControl.Entities.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Entities/obj/ScheduleControl.Entities.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Entities/obj/ScheduleControl.Entities.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Entities/obj/ScheduleControl.Entities.csproj.nuget.g.props -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Entities/obj/ScheduleControl.Entities.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Entities/obj/ScheduleControl.Entities.csproj.nuget.g.targets -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Entities/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Entities/obj/project.assets.json -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.Entities/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.Entities/obj/project.nuget.cache -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebAPI/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebAPI/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebAPI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebAPI/Program.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebAPI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebAPI/Properties/launchSettings.json -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebAPI/ScheduleControl.WebAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebAPI/ScheduleControl.WebAPI.csproj -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebAPI/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebAPI/Startup.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebAPI/Startup1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebAPI/Startup1.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebAPI/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebAPI/WeatherForecast.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebAPI/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebAPI/appsettings.Development.json -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebAPI/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebAPI/appsettings.json -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebAPI/bin/Debug/netcoreapp3.1/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebAPI/bin/Debug/netcoreapp3.1/Properties/launchSettings.json -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebAPI/bin/Debug/netcoreapp3.1/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebAPI/bin/Debug/netcoreapp3.1/appsettings.Development.json -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebAPI/bin/Debug/netcoreapp3.1/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebAPI/bin/Debug/netcoreapp3.1/appsettings.json -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebAPI/obj/Debug/netcoreapp3.1/ScheduleControl.WebAPI.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebAPI/obj/Debug/netcoreapp3.1/ScheduleControl.WebAPI.AssemblyInfo.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebAPI/obj/Debug/netcoreapp3.1/ScheduleControl.WebAPI.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | d7adf8f25b4fdb4f3cf83bdecb7428f9d17142eb 2 | -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebAPI/obj/Debug/netcoreapp3.1/ScheduleControl.WebAPI.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 17e53b39cfac7c63c829f2a98b3296319d7c05c9 2 | -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebAPI/obj/Debug/netcoreapp3.1/ScheduleControl.WebAPI.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebAPI/obj/Debug/netcoreapp3.1/ScheduleControl.WebAPI.assets.cache -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebAPI/obj/Debug/netcoreapp3.1/ScheduleControl.WebAPI.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebAPI/obj/Debug/netcoreapp3.1/ScheduleControl.WebAPI.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebAPI/obj/Debug/netcoreapp3.1/ScheduleControl.WebAPI.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebAPI/obj/Debug/netcoreapp3.1/ScheduleControl.WebAPI.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebAPI/obj/Debug/netcoreapp3.1/staticwebassets/ScheduleControl.WebAPI.StaticWebAssets.Manifest.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebAPI/obj/Debug/netcoreapp3.1/staticwebassets/ScheduleControl.WebAPI.StaticWebAssets.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebAPI/obj/ScheduleControl.WebAPI.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebAPI/obj/ScheduleControl.WebAPI.csproj.nuget.cache -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebAPI/obj/ScheduleControl.WebAPI.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebAPI/obj/ScheduleControl.WebAPI.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebAPI/obj/ScheduleControl.WebAPI.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebAPI/obj/ScheduleControl.WebAPI.csproj.nuget.g.props -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebAPI/obj/ScheduleControl.WebAPI.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebAPI/obj/ScheduleControl.WebAPI.csproj.nuget.g.targets -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebAPI/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebAPI/obj/project.assets.json -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/Controllers/AccountController.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/Controllers/CashboxController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/Controllers/CashboxController.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/Controllers/HomeController.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/Program.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/Properties/launchSettings.json -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/ScheduleControl.WebUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/ScheduleControl.WebUI.csproj -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/ScheduleControl.WebUI.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/ScheduleControl.WebUI.csproj.user -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/Startup.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/ViewModels/AuthViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/ViewModels/AuthViewModel.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/ViewModels/CashboxInputViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/ViewModels/CashboxInputViewModel.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/Views/Account/_Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/Views/Account/_Register.cshtml -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/Views/Cashbox/CashInsert.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/Views/Cashbox/CashInsert.cshtml -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/Views/Home/HangfireAbout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/Views/Home/HangfireAbout.cshtml -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/appsettings.Development.json -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/appsettings.json -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Hangfire.AspNetCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Hangfire.AspNetCore.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Hangfire.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Hangfire.Core.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Hangfire.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Hangfire.SqlServer.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Razor.Language.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.AspNetCore.Razor.Language.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.Bcl.HashCode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.Bcl.HashCode.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.Razor.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.SqlServer.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Binder.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGeneration.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/NuGet.Frameworks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/NuGet.Frameworks.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/Properties/launchSettings.json -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ScheduleControl.BackgroundJob.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ScheduleControl.BackgroundJob.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ScheduleControl.BackgroundJob.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ScheduleControl.BackgroundJob.pdb -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ScheduleControl.Business.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ScheduleControl.Business.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ScheduleControl.Business.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ScheduleControl.Business.pdb -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ScheduleControl.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ScheduleControl.Core.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ScheduleControl.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ScheduleControl.Core.pdb -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ScheduleControl.DataAccess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ScheduleControl.DataAccess.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ScheduleControl.DataAccess.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ScheduleControl.DataAccess.pdb -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ScheduleControl.Entities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ScheduleControl.Entities.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ScheduleControl.Entities.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ScheduleControl.Entities.pdb -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ScheduleControl.WebUI.Views.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ScheduleControl.WebUI.Views.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ScheduleControl.WebUI.Views.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ScheduleControl.WebUI.Views.pdb -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ScheduleControl.WebUI.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ScheduleControl.WebUI.deps.json -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ScheduleControl.WebUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ScheduleControl.WebUI.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ScheduleControl.WebUI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ScheduleControl.WebUI.exe -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ScheduleControl.WebUI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ScheduleControl.WebUI.pdb -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ScheduleControl.WebUI.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ScheduleControl.WebUI.runtimeconfig.dev.json -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ScheduleControl.WebUI.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ScheduleControl.WebUI.runtimeconfig.json -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/System.Composition.AttributedModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/System.Composition.AttributedModel.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/System.Composition.Convention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/System.Composition.Convention.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/System.Composition.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/System.Composition.Hosting.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/System.Composition.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/System.Composition.Runtime.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/System.Composition.TypedParts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/System.Composition.TypedParts.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/appsettings.Development.json -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/appsettings.json -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/dotnet-aspnet-codegenerator-design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/dotnet-aspnet-codegenerator-design.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/es/Hangfire.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/es/Hangfire.Core.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/libman.json -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/nl/Hangfire.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/nl/Hangfire.Core.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/pt-BR/Hangfire.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/pt-BR/Hangfire.Core.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/runtimes/win-arm64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/runtimes/win-arm64/native/sni.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/runtimes/win-x64/native/sni.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/sni.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/runtimes/win-x86/native/sni.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/runtimes/win/lib/netcoreapp2.1/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/zh-TW/Hangfire.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/zh-TW/Hangfire.Core.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/zh/Hangfire.Core.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/bin/Debug/netcoreapp3.1/zh/Hangfire.Core.resources.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/libman.json -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/Razor/Views/Account/_Register.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/Razor/Views/Account/_Register.cshtml.g.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/Razor/Views/Cashbox/CashInsert.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/Razor/Views/Cashbox/CashInsert.cshtml.g.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/Razor/Views/Home/HangfireAbout.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/Razor/Views/Home/HangfireAbout.cshtml.g.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/Razor/Views/Home/Index.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/Razor/Views/Home/Index.cshtml.g.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/Razor/Views/Home/Privacy.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/Razor/Views/Home/Privacy.cshtml.g.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/Razor/Views/Shared/Error.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/Razor/Views/Shared/Error.cshtml.g.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/Razor/Views/Shared/_Layout.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/Razor/Views/Shared/_Layout.cshtml.g.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/Razor/Views/Shared/_ValidationScriptsPartial.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/Razor/Views/Shared/_ValidationScriptsPartial.cshtml.g.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/Razor/Views/_ViewImports.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/Razor/Views/_ViewImports.cshtml.g.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/Razor/Views/_ViewStart.cshtml.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/Razor/Views/_ViewStart.cshtml.g.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/ScheduleControl.WebUI.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/ScheduleControl.WebUI.AssemblyInfo.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/ScheduleControl.WebUI.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 9e863207d73b7bf825ed2b8ee4582f2ccacb8c34 2 | -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/ScheduleControl.WebUI.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/ScheduleControl.WebUI.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 2dde42a677e9e64cc375c7cf524e1a15a7220ea2 2 | -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/ScheduleControl.WebUI.RazorAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/ScheduleControl.WebUI.RazorAssemblyInfo.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/ScheduleControl.WebUI.RazorCoreGenerate.cache: -------------------------------------------------------------------------------- 1 | 507c3882521fd56f28b03445f7ca951c46746db2 2 | -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/ScheduleControl.WebUI.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | db303c38b190cf7d5fd1adf8d0d43df813f94a8d 2 | -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/ScheduleControl.WebUI.RazorTargetAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/ScheduleControl.WebUI.RazorTargetAssemblyInfo.cs -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/ScheduleControl.WebUI.TagHelpers.input.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/ScheduleControl.WebUI.TagHelpers.output.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/ScheduleControl.WebUI.TagHelpers.output.cache -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/ScheduleControl.WebUI.Views.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/ScheduleControl.WebUI.Views.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/ScheduleControl.WebUI.Views.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/ScheduleControl.WebUI.Views.pdb -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/ScheduleControl.WebUI.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/ScheduleControl.WebUI.assets.cache -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/ScheduleControl.WebUI.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/ScheduleControl.WebUI.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a5466cfe6ca20927b76634957ab78762fb2a4c2a 2 | -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/ScheduleControl.WebUI.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/ScheduleControl.WebUI.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/ScheduleControl.WebUI.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/ScheduleControl.WebUI.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/ScheduleControl.WebUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/ScheduleControl.WebUI.dll -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/ScheduleControl.WebUI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/ScheduleControl.WebUI.exe -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/ScheduleControl.WebUI.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 86c8e15dd33445635927cfaf398408205fd11473 2 | -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/ScheduleControl.WebUI.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/ScheduleControl.WebUI.pdb -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/staticwebassets/ScheduleControl.WebUI.StaticWebAssets.Manifest.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/obj/Debug/netcoreapp3.1/staticwebassets/ScheduleControl.WebUI.StaticWebAssets.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/obj/ScheduleControl.WebUI.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/obj/ScheduleControl.WebUI.csproj.nuget.cache -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/obj/ScheduleControl.WebUI.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/obj/ScheduleControl.WebUI.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/obj/ScheduleControl.WebUI.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/obj/ScheduleControl.WebUI.csproj.nuget.g.props -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/obj/ScheduleControl.WebUI.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/obj/ScheduleControl.WebUI.csproj.nuget.g.targets -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/obj/project.assets.json -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/obj/project.nuget.cache -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/wwwroot/css/site.css -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/wwwroot/favicon.ico -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/wwwroot/js/site.js -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.WebUI/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /ScheduleControl/ScheduleControl.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ademolguner/AspNetCoreScheduleControl/HEAD/ScheduleControl/ScheduleControl.sln --------------------------------------------------------------------------------