commit c943086e791084356af391570f707e630874e6e1 Author: Your Name Date: Wed Mar 5 10:02:00 2025 +0300 first diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..32f4444 Binary files /dev/null and b/.DS_Store differ diff --git a/.idea/.idea.dmeo040225/.idea/.gitignore b/.idea/.idea.dmeo040225/.idea/.gitignore new file mode 100644 index 0000000..92ae22d --- /dev/null +++ b/.idea/.idea.dmeo040225/.idea/.gitignore @@ -0,0 +1,13 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Rider ignored files +/projectSettingsUpdater.xml +/modules.xml +/.idea.dmeo040225.iml +/contentModel.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/.idea.dmeo040225/.idea/avalonia.xml b/.idea/.idea.dmeo040225/.idea/avalonia.xml new file mode 100644 index 0000000..fdabbc9 --- /dev/null +++ b/.idea/.idea.dmeo040225/.idea/avalonia.xml @@ -0,0 +1,19 @@ + + + + + + \ No newline at end of file diff --git a/.idea/.idea.dmeo040225/.idea/encodings.xml b/.idea/.idea.dmeo040225/.idea/encodings.xml new file mode 100644 index 0000000..df87cf9 --- /dev/null +++ b/.idea/.idea.dmeo040225/.idea/encodings.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/.idea.dmeo040225/.idea/indexLayout.xml b/.idea/.idea.dmeo040225/.idea/indexLayout.xml new file mode 100644 index 0000000..7b08163 --- /dev/null +++ b/.idea/.idea.dmeo040225/.idea/indexLayout.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.dmeo040225/.idea/vcs.xml b/.idea/.idea.dmeo040225/.idea/vcs.xml new file mode 100644 index 0000000..27f6c91 --- /dev/null +++ b/.idea/.idea.dmeo040225/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/ClassLibrary/Class1.cs b/ClassLibrary/Class1.cs new file mode 100644 index 0000000..f19b71c --- /dev/null +++ b/ClassLibrary/Class1.cs @@ -0,0 +1,71 @@ +namespace ClassLibrary; + +public class Calculations +{ + static void AvailablePeriods(TimeSpan[] startTimes, int[] durations, TimeSpan beginWorkingTime, TimeSpan endWorkingTime, int consultationTime) + { + DateTime[] startTimesAsDateTime = new DateTime[startTimes.Length]; + for (int i = 0; i < startTimes.Length; i++) + { + startTimesAsDateTime[i] = DateTime.Today.Add(startTimes[i]); + } + + DateTime beginWorkingDateTime = DateTime.Today.Add(beginWorkingTime); + DateTime endWorkingDateTime = DateTime.Today.Add(endWorkingTime); + + string[] result = DatesBumBum(beginWorkingDateTime, endWorkingDateTime, startTimesAsDateTime, durations, consultationTime); + + int count = 0; + foreach (string date in result) + { + if (!string.IsNullOrEmpty(date)) + { + Console.WriteLine(date); + count++; + } + } + Console.WriteLine(count); + } + + static string[] DatesBumBum(DateTime beginWorkingTime, DateTime endWorkingTime, DateTime[] startTimes, int[] durations, int consultationTime) + { + int maxIntervals = (int)((endWorkingTime - beginWorkingTime).TotalMinutes / consultationTime); + string[] availablePeriods = new string[maxIntervals]; + int index = 0; + DateTime workTime = beginWorkingTime; + int i = 0; + + while (workTime < endWorkingTime) + { + DateTime nextBusyStart = (i < startTimes.Length) ? startTimes[i] : endWorkingTime; + TimeSpan availableTime = nextBusyStart - workTime; + int availableMinutes = (int)availableTime.TotalMinutes; + + while (availableMinutes >= consultationTime) + { + DateTime nextAvailableEnd = workTime.AddMinutes(consultationTime); + + if (nextAvailableEnd > endWorkingTime) + { + nextAvailableEnd = endWorkingTime; + } + + availablePeriods[index++] = $"{workTime:HH:mm}-{nextAvailableEnd:HH:mm}"; + + workTime = nextAvailableEnd; + availableMinutes -= consultationTime; + } + + if (i < startTimes.Length) + { + workTime = startTimes[i].AddMinutes(durations[i]); + i++; + } + else + { + break; + } + } + return availablePeriods; + } +} \ No newline at end of file diff --git a/ClassLibrary/ClassLibrary.csproj b/ClassLibrary/ClassLibrary.csproj new file mode 100644 index 0000000..3a63532 --- /dev/null +++ b/ClassLibrary/ClassLibrary.csproj @@ -0,0 +1,9 @@ + + + + net8.0 + enable + enable + + + diff --git a/ClassLibrary/obj/ClassLibrary.csproj.nuget.dgspec.json b/ClassLibrary/obj/ClassLibrary.csproj.nuget.dgspec.json new file mode 100644 index 0000000..50085b0 --- /dev/null +++ b/ClassLibrary/obj/ClassLibrary.csproj.nuget.dgspec.json @@ -0,0 +1,66 @@ +{ + "format": 1, + "restore": { + "/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/ClassLibrary.csproj": {} + }, + "projects": { + "/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/ClassLibrary.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/ClassLibrary.csproj", + "projectName": "ClassLibrary", + "projectPath": "/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/ClassLibrary.csproj", + "packagesPath": "/Users/rinchi/.nuget/packages/", + "outputPath": "/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/rinchi/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/8.0.402/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/ClassLibrary/obj/ClassLibrary.csproj.nuget.g.props b/ClassLibrary/obj/ClassLibrary.csproj.nuget.g.props new file mode 100644 index 0000000..c20bf38 --- /dev/null +++ b/ClassLibrary/obj/ClassLibrary.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /Users/rinchi/.nuget/packages/ + /Users/rinchi/.nuget/packages/ + PackageReference + 6.12.0 + + + + + \ No newline at end of file diff --git a/ClassLibrary/obj/ClassLibrary.csproj.nuget.g.targets b/ClassLibrary/obj/ClassLibrary.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/ClassLibrary/obj/ClassLibrary.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/ClassLibrary/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/ClassLibrary/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..dca70aa --- /dev/null +++ b/ClassLibrary/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/ClassLibrary/obj/Debug/net8.0/ClassLibrary.AssemblyInfo.cs b/ClassLibrary/obj/Debug/net8.0/ClassLibrary.AssemblyInfo.cs new file mode 100644 index 0000000..e314123 --- /dev/null +++ b/ClassLibrary/obj/Debug/net8.0/ClassLibrary.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ClassLibrary")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ClassLibrary")] +[assembly: System.Reflection.AssemblyTitleAttribute("ClassLibrary")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ClassLibrary/obj/Debug/net8.0/ClassLibrary.AssemblyInfoInputs.cache b/ClassLibrary/obj/Debug/net8.0/ClassLibrary.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6033b9e --- /dev/null +++ b/ClassLibrary/obj/Debug/net8.0/ClassLibrary.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +591c39984b2463b5eeb40845e0d7f843492bccac0e513bbf9023d2a5fc0fa932 diff --git a/ClassLibrary/obj/Debug/net8.0/ClassLibrary.GeneratedMSBuildEditorConfig.editorconfig b/ClassLibrary/obj/Debug/net8.0/ClassLibrary.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..9b8fea0 --- /dev/null +++ b/ClassLibrary/obj/Debug/net8.0/ClassLibrary.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ClassLibrary +build_property.ProjectDir = /Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/ClassLibrary/obj/Debug/net8.0/ClassLibrary.GlobalUsings.g.cs b/ClassLibrary/obj/Debug/net8.0/ClassLibrary.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/ClassLibrary/obj/Debug/net8.0/ClassLibrary.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/ClassLibrary/obj/Debug/net8.0/ClassLibrary.assets.cache b/ClassLibrary/obj/Debug/net8.0/ClassLibrary.assets.cache new file mode 100644 index 0000000..ab46c8f Binary files /dev/null and b/ClassLibrary/obj/Debug/net8.0/ClassLibrary.assets.cache differ diff --git a/ClassLibrary/obj/project.assets.json b/ClassLibrary/obj/project.assets.json new file mode 100644 index 0000000..08979e5 --- /dev/null +++ b/ClassLibrary/obj/project.assets.json @@ -0,0 +1,71 @@ +{ + "version": 3, + "targets": { + "net8.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net8.0": [] + }, + "packageFolders": { + "/Users/rinchi/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/ClassLibrary.csproj", + "projectName": "ClassLibrary", + "projectPath": "/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/ClassLibrary.csproj", + "packagesPath": "/Users/rinchi/.nuget/packages/", + "outputPath": "/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/Users/rinchi/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/8.0.402/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/ClassLibrary/obj/project.nuget.cache b/ClassLibrary/obj/project.nuget.cache new file mode 100644 index 0000000..69c6827 --- /dev/null +++ b/ClassLibrary/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "OTbbUH5Axag=", + "success": true, + "projectFilePath": "/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/ClassLibrary.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file diff --git a/ClassLibrary/obj/project.packagespec.json b/ClassLibrary/obj/project.packagespec.json new file mode 100644 index 0000000..00e0824 --- /dev/null +++ b/ClassLibrary/obj/project.packagespec.json @@ -0,0 +1 @@ +"restore":{"projectUniqueName":"/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/ClassLibrary.csproj","projectName":"ClassLibrary","projectPath":"/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/ClassLibrary.csproj","outputPath":"/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"}}"frameworks":{"net8.0":{"targetAlias":"net8.0","imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/local/share/dotnet/sdk/8.0.402/PortableRuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/ClassLibrary/obj/rider.project.restore.info b/ClassLibrary/obj/rider.project.restore.info new file mode 100644 index 0000000..bb285fd --- /dev/null +++ b/ClassLibrary/obj/rider.project.restore.info @@ -0,0 +1 @@ +17410953035453165 \ No newline at end of file diff --git a/dmeo040225.sln b/dmeo040225.sln new file mode 100644 index 0000000..1678f67 --- /dev/null +++ b/dmeo040225.sln @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "dmeo040225", "dmeo040225\dmeo040225.csproj", "{882DA679-6454-4492-8414-AA30BEDF38CC}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClassLibrary", "ClassLibrary\ClassLibrary.csproj", "{3AF78D78-641F-4141-A5BE-7D1A4C1966C7}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {882DA679-6454-4492-8414-AA30BEDF38CC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {882DA679-6454-4492-8414-AA30BEDF38CC}.Debug|Any CPU.Build.0 = Debug|Any CPU + {882DA679-6454-4492-8414-AA30BEDF38CC}.Release|Any CPU.ActiveCfg = Release|Any CPU + {882DA679-6454-4492-8414-AA30BEDF38CC}.Release|Any CPU.Build.0 = Release|Any CPU + {3AF78D78-641F-4141-A5BE-7D1A4C1966C7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {3AF78D78-641F-4141-A5BE-7D1A4C1966C7}.Debug|Any CPU.Build.0 = Debug|Any CPU + {3AF78D78-641F-4141-A5BE-7D1A4C1966C7}.Release|Any CPU.ActiveCfg = Release|Any CPU + {3AF78D78-641F-4141-A5BE-7D1A4C1966C7}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/dmeo040225/.DS_Store b/dmeo040225/.DS_Store new file mode 100644 index 0000000..affb85a Binary files /dev/null and b/dmeo040225/.DS_Store differ diff --git a/dmeo040225/AdminWindow.axaml b/dmeo040225/AdminWindow.axaml new file mode 100644 index 0000000..c0680c6 --- /dev/null +++ b/dmeo040225/AdminWindow.axaml @@ -0,0 +1,23 @@ + + + + +