first
This commit is contained in:
commit
c943086e79
13
.idea/.idea.dmeo040225/.idea/.gitignore
vendored
Normal file
13
.idea/.idea.dmeo040225/.idea/.gitignore
vendored
Normal file
@ -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
|
19
.idea/.idea.dmeo040225/.idea/avalonia.xml
Normal file
19
.idea/.idea.dmeo040225/.idea/avalonia.xml
Normal file
@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="AvaloniaProject">
|
||||
<option name="projectPerEditor">
|
||||
<map>
|
||||
<entry key="dmeo040225/AdminWindow.axaml" value="dmeo040225/dmeo040225.csproj" />
|
||||
<entry key="dmeo040225/ClientWindow.axaml" value="dmeo040225/dmeo040225.csproj" />
|
||||
<entry key="dmeo040225/GetOrderWindow.axaml" value="dmeo040225/dmeo040225.csproj" />
|
||||
<entry key="dmeo040225/HistoryOrdersWindow.axaml" value="dmeo040225/dmeo040225.csproj" />
|
||||
<entry key="dmeo040225/HistoryWindow.axaml" value="dmeo040225/dmeo040225.csproj" />
|
||||
<entry key="dmeo040225/MainWindow.axaml" value="dmeo040225/dmeo040225.csproj" />
|
||||
<entry key="dmeo040225/NewOrder.axaml" value="dmeo040225/dmeo040225.csproj" />
|
||||
<entry key="dmeo040225/NewOrderWindow.axaml" value="dmeo040225/dmeo040225.csproj" />
|
||||
<entry key="dmeo040225/OlderWindow.axaml" value="dmeo040225/dmeo040225.csproj" />
|
||||
<entry key="dmeo040225/SellerWindow.axaml" value="dmeo040225/dmeo040225.csproj" />
|
||||
</map>
|
||||
</option>
|
||||
</component>
|
||||
</project>
|
4
.idea/.idea.dmeo040225/.idea/encodings.xml
Normal file
4
.idea/.idea.dmeo040225/.idea/encodings.xml
Normal file
@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="Encoding" addBOMForNewFiles="with BOM under Windows, with no BOM otherwise" />
|
||||
</project>
|
8
.idea/.idea.dmeo040225/.idea/indexLayout.xml
Normal file
8
.idea/.idea.dmeo040225/.idea/indexLayout.xml
Normal file
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="UserContentModel">
|
||||
<attachedFolders />
|
||||
<explicitIncludes />
|
||||
<explicitExcludes />
|
||||
</component>
|
||||
</project>
|
6
.idea/.idea.dmeo040225/.idea/vcs.xml
Normal file
6
.idea/.idea.dmeo040225/.idea/vcs.xml
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="$PROJECT_DIR$/dmeo040225" vcs="Git" />
|
||||
</component>
|
||||
</project>
|
71
ClassLibrary/Class1.cs
Normal file
71
ClassLibrary/Class1.cs
Normal file
@ -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;
|
||||
}
|
||||
}
|
9
ClassLibrary/ClassLibrary.csproj
Normal file
9
ClassLibrary/ClassLibrary.csproj
Normal file
@ -0,0 +1,9 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
66
ClassLibrary/obj/ClassLibrary.csproj.nuget.dgspec.json
Normal file
66
ClassLibrary/obj/ClassLibrary.csproj.nuget.dgspec.json
Normal file
@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
15
ClassLibrary/obj/ClassLibrary.csproj.nuget.g.props
Normal file
15
ClassLibrary/obj/ClassLibrary.csproj.nuget.g.props
Normal file
@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/Users/rinchi/.nuget/packages/</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/Users/rinchi/.nuget/packages/</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.12.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="/Users/rinchi/.nuget/packages/" />
|
||||
</ItemGroup>
|
||||
</Project>
|
2
ClassLibrary/obj/ClassLibrary.csproj.nuget.g.targets
Normal file
2
ClassLibrary/obj/ClassLibrary.csproj.nuget.g.targets
Normal file
@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
|
@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
|
22
ClassLibrary/obj/Debug/net8.0/ClassLibrary.AssemblyInfo.cs
Normal file
22
ClassLibrary/obj/Debug/net8.0/ClassLibrary.AssemblyInfo.cs
Normal file
@ -0,0 +1,22 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
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.
|
||||
|
@ -0,0 +1 @@
|
||||
591c39984b2463b5eeb40845e0d7f843492bccac0e513bbf9023d2a5fc0fa932
|
@ -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 =
|
@ -0,0 +1,8 @@
|
||||
// <auto-generated/>
|
||||
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;
|
BIN
ClassLibrary/obj/Debug/net8.0/ClassLibrary.assets.cache
Normal file
BIN
ClassLibrary/obj/Debug/net8.0/ClassLibrary.assets.cache
Normal file
Binary file not shown.
71
ClassLibrary/obj/project.assets.json
Normal file
71
ClassLibrary/obj/project.assets.json
Normal file
@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
8
ClassLibrary/obj/project.nuget.cache
Normal file
8
ClassLibrary/obj/project.nuget.cache
Normal file
@ -0,0 +1,8 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "OTbbUH5Axag=",
|
||||
"success": true,
|
||||
"projectFilePath": "/Users/rinchi/RiderProjects/dmeo040225/ClassLibrary/ClassLibrary.csproj",
|
||||
"expectedPackageFiles": [],
|
||||
"logs": []
|
||||
}
|
1
ClassLibrary/obj/project.packagespec.json
Normal file
1
ClassLibrary/obj/project.packagespec.json
Normal file
@ -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"}}
|
1
ClassLibrary/obj/rider.project.restore.info
Normal file
1
ClassLibrary/obj/rider.project.restore.info
Normal file
@ -0,0 +1 @@
|
||||
17410953035453165
|
22
dmeo040225.sln
Normal file
22
dmeo040225.sln
Normal file
@ -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
|
BIN
dmeo040225/.DS_Store
vendored
Normal file
BIN
dmeo040225/.DS_Store
vendored
Normal file
Binary file not shown.
23
dmeo040225/AdminWindow.axaml
Normal file
23
dmeo040225/AdminWindow.axaml
Normal file
@ -0,0 +1,23 @@
|
||||
<Window xmlns="https://github.com/avaloniaui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
||||
x:Class="dmeo040225.AdminWindow"
|
||||
Title="AdminWindow">
|
||||
<Border Background="Bisque">
|
||||
<DockPanel>
|
||||
<StackPanel DockPanel.Dock="Top" Orientation="Horizontal" Background="Gray" Height="30">
|
||||
<Button Content="Назад" Click="Back_OnClick" Width="120" Background="LightGray" Foreground="Black" HorizontalAlignment="Left" DockPanel.Dock="Left"/>
|
||||
<TextBlock x:Name="TimerText" Foreground="White" Margin="10,5,0,0" HorizontalAlignment="Center"/>
|
||||
</StackPanel>
|
||||
|
||||
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" Spacing="15">
|
||||
<Image x:Name="Image" Width="150" Height="150"/>
|
||||
<TextBlock x:Name="FioName" Foreground="Black"/>
|
||||
<TextBlock x:Name="RoleName" Foreground="Black"/>
|
||||
<Button Content="История" Click="History_OnClick" Background="LightGray" Width="170"/>
|
||||
</StackPanel>
|
||||
</DockPanel>
|
||||
</Border>
|
||||
</Window>
|
65
dmeo040225/AdminWindow.axaml.cs
Normal file
65
dmeo040225/AdminWindow.axaml.cs
Normal file
@ -0,0 +1,65 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
using Avalonia;
|
||||
using Avalonia.Collections;
|
||||
using Avalonia.Controls;
|
||||
using Avalonia.Interactivity;
|
||||
using Avalonia.Markup.Xaml;
|
||||
using Avalonia.Media.Imaging;
|
||||
using dmeo040225.Models;
|
||||
using dmeo040225.Services;
|
||||
|
||||
namespace dmeo040225;
|
||||
|
||||
public partial class AdminWindow : Window
|
||||
{
|
||||
public AdminWindow(User user)
|
||||
{
|
||||
InitializeComponent();
|
||||
|
||||
using var context = new DatabaseContext();
|
||||
var role = context.Roles.FirstOrDefault(it => it.Id == user.RoleId).Name;
|
||||
|
||||
Image.Source = new Bitmap(user.Photopath);
|
||||
FioName.Text = user.Fio;
|
||||
RoleName.Text = role;
|
||||
|
||||
TimerService.Instance.TimeUpdated += UpdateTimerText;
|
||||
TimerService.Instance.TimerExpired += LogoutUser;
|
||||
|
||||
TimerService.Instance.Start();
|
||||
}
|
||||
|
||||
private void Back_OnClick(object? sender, RoutedEventArgs e)
|
||||
{
|
||||
TimerService.Instance.Reset();
|
||||
Close();
|
||||
// MainWindow mainWindow = new MainWindow();
|
||||
// mainWindow.ShowDialog(this);
|
||||
}
|
||||
|
||||
private void History_OnClick(object? sender, RoutedEventArgs e)
|
||||
{
|
||||
HistoryWindow historyWindow = new HistoryWindow();
|
||||
historyWindow.ShowDialog(this);
|
||||
}
|
||||
|
||||
private void UpdateTimerText(TimeSpan time)
|
||||
{
|
||||
TimerText.Text = $"Осталось: {time:mm\\:ss}";
|
||||
}
|
||||
|
||||
private void LogoutUser()
|
||||
{
|
||||
Close();
|
||||
var mainWindow = new MainWindow();
|
||||
mainWindow.Show();
|
||||
}
|
||||
|
||||
protected override void OnClosed(EventArgs e)
|
||||
{
|
||||
TimerService.Instance.TimeUpdated -= UpdateTimerText;
|
||||
TimerService.Instance.TimerExpired -= LogoutUser;
|
||||
base.OnClosed(e);
|
||||
}
|
||||
}
|
10
dmeo040225/App.axaml
Normal file
10
dmeo040225/App.axaml
Normal file
@ -0,0 +1,10 @@
|
||||
<Application xmlns="https://github.com/avaloniaui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
x:Class="dmeo040225.App"
|
||||
RequestedThemeVariant="Default">
|
||||
<!-- "Default" ThemeVariant follows system theme variant. "Dark" or "Light" are other available options. -->
|
||||
|
||||
<Application.Styles>
|
||||
<FluentTheme />
|
||||
</Application.Styles>
|
||||
</Application>
|
23
dmeo040225/App.axaml.cs
Normal file
23
dmeo040225/App.axaml.cs
Normal file
@ -0,0 +1,23 @@
|
||||
using Avalonia;
|
||||
using Avalonia.Controls.ApplicationLifetimes;
|
||||
using Avalonia.Markup.Xaml;
|
||||
|
||||
namespace dmeo040225;
|
||||
|
||||
public partial class App : Application
|
||||
{
|
||||
public override void Initialize()
|
||||
{
|
||||
AvaloniaXamlLoader.Load(this);
|
||||
}
|
||||
|
||||
public override void OnFrameworkInitializationCompleted()
|
||||
{
|
||||
if (ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop)
|
||||
{
|
||||
desktop.MainWindow = new MainWindow();
|
||||
}
|
||||
|
||||
base.OnFrameworkInitializationCompleted();
|
||||
}
|
||||
}
|
9
dmeo040225/ClientWindow.axaml
Normal file
9
dmeo040225/ClientWindow.axaml
Normal file
@ -0,0 +1,9 @@
|
||||
<Window xmlns="https://github.com/avaloniaui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
||||
x:Class="dmeo040225.ClientWindow"
|
||||
Title="ClientWindow">
|
||||
Welcome to Avalonia!
|
||||
</Window>
|
13
dmeo040225/ClientWindow.axaml.cs
Normal file
13
dmeo040225/ClientWindow.axaml.cs
Normal file
@ -0,0 +1,13 @@
|
||||
using Avalonia;
|
||||
using Avalonia.Controls;
|
||||
using Avalonia.Markup.Xaml;
|
||||
|
||||
namespace dmeo040225;
|
||||
|
||||
public partial class ClientWindow : Window
|
||||
{
|
||||
public ClientWindow()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
9
dmeo040225/GetOrderWindow.axaml
Normal file
9
dmeo040225/GetOrderWindow.axaml
Normal file
@ -0,0 +1,9 @@
|
||||
<Window xmlns="https://github.com/avaloniaui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
||||
x:Class="dmeo040225.GetOrderWindow"
|
||||
Title="GetOrderWindow">
|
||||
Welcome to Avalonia!
|
||||
</Window>
|
13
dmeo040225/GetOrderWindow.axaml.cs
Normal file
13
dmeo040225/GetOrderWindow.axaml.cs
Normal file
@ -0,0 +1,13 @@
|
||||
using Avalonia;
|
||||
using Avalonia.Controls;
|
||||
using Avalonia.Markup.Xaml;
|
||||
|
||||
namespace dmeo040225;
|
||||
|
||||
public partial class GetOrderWindow : Window
|
||||
{
|
||||
public GetOrderWindow()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
51
dmeo040225/HistoryOrdersWindow.axaml
Normal file
51
dmeo040225/HistoryOrdersWindow.axaml
Normal file
@ -0,0 +1,51 @@
|
||||
<Window xmlns="https://github.com/avaloniaui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
||||
x:Class="dmeo040225.HistoryOrdersWindow"
|
||||
x:CompileBindings="False"
|
||||
Title="HistoryOrdersWindow">
|
||||
<Border Background="Bisque">
|
||||
<DockPanel Background="Bisque">
|
||||
<StackPanel DockPanel.Dock="Top" Orientation="Horizontal" Background="Gray" Height="30">
|
||||
<Button Content="Назад" Click="Back_OnClick" Width="120" Background="LightGray" Foreground="Black" HorizontalAlignment="Left" DockPanel.Dock="Left"/>
|
||||
<TextBlock x:Name="TimerText" Foreground="White" Margin="10,5,0,0" HorizontalAlignment="Center"/>
|
||||
<ComboBox VerticalAlignment="Center" Width="100" x:Name="FilterComboboxUsers" SelectionChanged="FilterComboboxUsers_OnSelectionChanged"/>
|
||||
<ComboBox VerticalAlignment="Center" Width="100" x:Name="FilterComboboxServices" SelectionChanged="FilterComboboxServices_OnSelectionChanged"/>
|
||||
</StackPanel>
|
||||
|
||||
<ScrollViewer DockPanel.Dock="Top" VerticalScrollBarVisibility="Auto">
|
||||
<ListBox x:Name="ListBoxHistory">
|
||||
<ListBox.ItemTemplate>
|
||||
<DataTemplate>
|
||||
<Border BorderBrush="Gray" BorderThickness="1" Padding="5">
|
||||
<Grid>
|
||||
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
|
||||
<TextBlock Text="{Binding Code}" TextWrapping="Wrap" TextAlignment="Center" />
|
||||
<TextBlock Text="{Binding Orderdata}" TextWrapping="Wrap" TextAlignment="Center"/>
|
||||
<TextBlock Text="{Binding Status}" TextWrapping="Wrap" TextAlignment="Center"/>
|
||||
<TextBlock Text="{Binding Status}" TextWrapping="Wrap" TextAlignment="Center"/>
|
||||
<ItemsControl ItemsSource="{Binding ServicesNames}">
|
||||
<ItemsControl.ItemTemplate>
|
||||
<DataTemplate>
|
||||
<TextBlock Text="{Binding}" TextAlignment="Center"/>
|
||||
</DataTemplate>
|
||||
</ItemsControl.ItemTemplate>
|
||||
</ItemsControl>
|
||||
</StackPanel>
|
||||
</Grid>
|
||||
|
||||
<Border.ContextMenu>
|
||||
<ContextMenu>
|
||||
<MenuItem Header="Сформировать" Click="FormOrder_OnClick"/>
|
||||
</ContextMenu>
|
||||
</Border.ContextMenu>
|
||||
</Border>
|
||||
</DataTemplate>
|
||||
</ListBox.ItemTemplate>
|
||||
</ListBox>
|
||||
</ScrollViewer>
|
||||
</DockPanel>
|
||||
</Border>
|
||||
</Window>
|
163
dmeo040225/HistoryOrdersWindow.axaml.cs
Normal file
163
dmeo040225/HistoryOrdersWindow.axaml.cs
Normal file
@ -0,0 +1,163 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using Avalonia;
|
||||
using Avalonia.Controls;
|
||||
using Avalonia.Interactivity;
|
||||
using Avalonia.Markup.Xaml;
|
||||
using dmeo040225.Models;
|
||||
using dmeo040225.Services;
|
||||
using Microsoft.Extensions.Caching.Memory;
|
||||
using PdfSharpCore.Drawing;
|
||||
using PdfSharpCore.Pdf;
|
||||
|
||||
namespace dmeo040225;
|
||||
|
||||
public partial class HistoryOrdersWindow : Window
|
||||
{
|
||||
ObservableCollection<Order> Orders = new ObservableCollection<Order>();
|
||||
List<Service> dataSourceServices;
|
||||
List<OrderPresenter> dataSourceOrders;
|
||||
public HistoryOrdersWindow()
|
||||
{
|
||||
InitializeComponent();
|
||||
using var context = new DatabaseContext();
|
||||
dataSourceOrders = context.Orders.Select(order => new OrderPresenter
|
||||
{
|
||||
Id = order.Id,
|
||||
Code = order.Code,
|
||||
Orderdata = order.Orderdata,
|
||||
Ordertime = order.Ordertime,
|
||||
UserId = order.UserId,
|
||||
Status = order.Status,
|
||||
Prokattime = order.Prokattime,
|
||||
Services = order.OrdersServices.Select(os => os.Service).ToList(),
|
||||
UserFio = context.Users.FirstOrDefault(u => u.Id == order.UserId).Fio,
|
||||
|
||||
ServicesNames = new ObservableCollection<string>(
|
||||
order.OrdersServices.Select(os => os.Service.Name).ToList()
|
||||
)
|
||||
}).ToList();
|
||||
|
||||
dataSourceServices = context.Services.Select(order => new Service()).ToList();
|
||||
|
||||
ListBoxHistory.ItemsSource = Orders;
|
||||
FilterComboboxUsers.ItemsSource = context.Users.Select(user => user.Fio).ToList();
|
||||
FilterComboboxServices.ItemsSource = context.Services.Select(service => service.Name).ToList();
|
||||
DisplayServices();
|
||||
|
||||
TimerService.Instance.TimeUpdated += UpdateTimerText;
|
||||
TimerService.Instance.TimerExpired += LogoutUser;
|
||||
}
|
||||
|
||||
public class OrderPresenter() : Order
|
||||
{
|
||||
public List<Service> Services { get; set; } = new();
|
||||
public String UserFio;
|
||||
public ObservableCollection<string> ServicesNames { get; set; } = new();
|
||||
}
|
||||
|
||||
public void DisplayServices()
|
||||
{
|
||||
var temp = dataSourceOrders;
|
||||
Orders.Clear();
|
||||
|
||||
if (FilterComboboxUsers.SelectionBoxItem != null)
|
||||
{
|
||||
temp = temp.Where(u => u.UserFio == FilterComboboxUsers.SelectionBoxItem.ToString()).ToList();
|
||||
}
|
||||
|
||||
if (FilterComboboxServices.SelectionBoxItem != null)
|
||||
{
|
||||
var selectedServiceName = FilterComboboxServices.SelectionBoxItem.ToString();
|
||||
temp = temp.Where(o => o.Services.Any(s => s.Name == selectedServiceName)).ToList();
|
||||
}
|
||||
|
||||
foreach (var item in temp)
|
||||
{
|
||||
Orders.Add(item);
|
||||
}
|
||||
}
|
||||
|
||||
private void FilterComboboxUsers_OnSelectionChanged(object? sender, SelectionChangedEventArgs e)
|
||||
{
|
||||
DisplayServices();
|
||||
}
|
||||
|
||||
private void FilterComboboxServices_OnSelectionChanged(object? sender, SelectionChangedEventArgs e)
|
||||
{
|
||||
DisplayServices();
|
||||
}
|
||||
|
||||
private void Back_OnClick(object? sender, RoutedEventArgs e)
|
||||
{
|
||||
Close();
|
||||
}
|
||||
|
||||
private void UpdateTimerText(TimeSpan time)
|
||||
{
|
||||
TimerText.Text = $"Осталось: {time:mm\\:ss}";
|
||||
}
|
||||
|
||||
private void LogoutUser()
|
||||
{
|
||||
Close();
|
||||
var mainWindow = new MainWindow();
|
||||
mainWindow.Show();
|
||||
}
|
||||
|
||||
protected override void OnClosed(EventArgs e)
|
||||
{
|
||||
TimerService.Instance.TimeUpdated -= UpdateTimerText;
|
||||
TimerService.Instance.TimerExpired -= LogoutUser;
|
||||
base.OnClosed(e);
|
||||
}
|
||||
|
||||
private void FormOrder_OnClick(object? sender, RoutedEventArgs e)
|
||||
{
|
||||
if (ListBoxHistory.SelectedItem is OrderPresenter selectedOrder)
|
||||
{
|
||||
var resultSum = 0;
|
||||
var serviceNames = "";
|
||||
|
||||
using var document = new PdfDocument();
|
||||
var page = document.AddPage();
|
||||
var gfx = XGraphics.FromPdfPage(page);
|
||||
|
||||
var font = new XFont("Arial", 14, XFontStyle.Regular);
|
||||
|
||||
foreach (var service in selectedOrder.Services)
|
||||
{
|
||||
resultSum += int.Parse(service.Cost);
|
||||
serviceNames += service.Name + " ";
|
||||
}
|
||||
|
||||
var lines = new List<string>
|
||||
{
|
||||
$"Дата заказа: {selectedOrder.Orderdata}",
|
||||
$"ID пользователя: {selectedOrder.UserId}",
|
||||
$"Код заказа: {selectedOrder.Code}",
|
||||
$"ФИО пользователя: {selectedOrder.UserFio}",
|
||||
$"Время заказа: {selectedOrder.Ordertime}",
|
||||
$"Услуги: {serviceNames}",
|
||||
$"Итоговая сумма: {resultSum}"
|
||||
};
|
||||
|
||||
double x = 50, y = 50;
|
||||
double lineHeight = 20;
|
||||
|
||||
foreach (var line in lines)
|
||||
{
|
||||
gfx.DrawString(line, font, XBrushes.Black, new XPoint(x, y));
|
||||
y += lineHeight;
|
||||
}
|
||||
|
||||
string filePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Desktop), $"Order_{selectedOrder.Id}.pdf");
|
||||
document.Save(filePath);
|
||||
|
||||
Console.WriteLine($"PDF сохранен: {filePath}");
|
||||
}
|
||||
}
|
||||
}
|
41
dmeo040225/HistoryWindow.axaml
Normal file
41
dmeo040225/HistoryWindow.axaml
Normal file
@ -0,0 +1,41 @@
|
||||
<Window xmlns="https://github.com/avaloniaui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
||||
x:Class="dmeo040225.HistoryWindow"
|
||||
x:CompileBindings="False"
|
||||
Title="HistoryWindow">
|
||||
<Border Background="Bisque">
|
||||
<DockPanel Background="Bisque">
|
||||
<StackPanel DockPanel.Dock="Top" Orientation="Horizontal" Background="Gray" Height="30">
|
||||
<Button Content="Назад" Click="Back_OnClick" Width="120" Background="LightGray" Foreground="Black" HorizontalAlignment="Left" DockPanel.Dock="Left"/>
|
||||
<TextBlock x:Name="TimerText" Foreground="White" Margin="10,5,0,0" HorizontalAlignment="Center"/>
|
||||
<ComboBox VerticalAlignment="Center" Width="100" x:Name="SortComboBox" SelectionChanged="SortComboBox_OnSelectionChanged">
|
||||
<ComboBoxItem Content="сброс"/>
|
||||
<ComboBoxItem Content="later"/>
|
||||
<ComboBoxItem Content="nah"/>
|
||||
</ComboBox>
|
||||
<ComboBox VerticalAlignment="Center" Width="100" x:Name="FilterCombobox" SelectionChanged="FilterCombobox_OnSelectionChanged"/>
|
||||
</StackPanel>
|
||||
|
||||
<ScrollViewer DockPanel.Dock="Top" VerticalScrollBarVisibility="Auto">
|
||||
<ListBox x:Name="ListBoxHistory">
|
||||
<ListBox.ItemTemplate>
|
||||
<DataTemplate>
|
||||
<Border BorderBrush="Gray" BorderThickness="1" Padding="5">
|
||||
<Grid>
|
||||
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
|
||||
<TextBlock Text="{Binding Lastlogin}" TextWrapping="Wrap" TextAlignment="Center"/>
|
||||
<TextBlock Text="{Binding Login}" TextWrapping="Wrap" TextAlignment="Center" />
|
||||
<TextBlock Text="{Binding logOrNoText}" TextWrapping="Wrap" TextAlignment="Center"/>
|
||||
</StackPanel>
|
||||
</Grid>
|
||||
</Border>
|
||||
</DataTemplate>
|
||||
</ListBox.ItemTemplate>
|
||||
</ListBox>
|
||||
</ScrollViewer>
|
||||
</DockPanel>
|
||||
</Border>
|
||||
</Window>
|
115
dmeo040225/HistoryWindow.axaml.cs
Normal file
115
dmeo040225/HistoryWindow.axaml.cs
Normal file
@ -0,0 +1,115 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Linq;
|
||||
using Avalonia;
|
||||
using Avalonia.Controls;
|
||||
using Avalonia.Interactivity;
|
||||
using Avalonia.Markup.Xaml;
|
||||
using dmeo040225.Models;
|
||||
using dmeo040225.Services;
|
||||
|
||||
namespace dmeo040225;
|
||||
|
||||
public partial class HistoryWindow : Window
|
||||
{
|
||||
ObservableCollection<User> Users = new ObservableCollection<User>();
|
||||
List<UserPresenter> dataSourceUsers;
|
||||
public HistoryWindow()
|
||||
{
|
||||
InitializeComponent();
|
||||
using var context = new DatabaseContext();
|
||||
dataSourceUsers = context.Users.Select(user => new UserPresenter
|
||||
{
|
||||
Id = user.Id,
|
||||
RoleId = user.RoleId,
|
||||
Login = user.Login,
|
||||
Password = user.Password,
|
||||
Lastlogin = user.Lastlogin,
|
||||
Logorno = user.Logorno,
|
||||
}).ToList();
|
||||
|
||||
ListBoxHistory.ItemsSource = Users;
|
||||
FilterCombobox.ItemsSource = dataSourceUsers.Select(user => user.Login).ToList();
|
||||
DisplayServices();
|
||||
|
||||
TimerService.Instance.TimeUpdated += UpdateTimerText;
|
||||
TimerService.Instance.TimerExpired += LogoutUser;
|
||||
}
|
||||
|
||||
public class UserPresenter() : User
|
||||
{
|
||||
String logOrNoText
|
||||
{
|
||||
get
|
||||
{
|
||||
if (Logorno == true)
|
||||
{
|
||||
return "accessed";
|
||||
}
|
||||
else
|
||||
{
|
||||
return "denied";
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public void DisplayServices()
|
||||
{
|
||||
var temp = dataSourceUsers;
|
||||
Users.Clear();
|
||||
switch (SortComboBox.SelectedIndex)
|
||||
{
|
||||
case 1: temp = temp.OrderBy(it => it.Lastlogin).ToList(); break;
|
||||
case 0: temp = temp.OrderByDescending(it => it.Lastlogin).ToList(); break;
|
||||
default: break;
|
||||
}
|
||||
|
||||
if (FilterCombobox.SelectionBoxItem != null)
|
||||
{
|
||||
temp = temp.Where(u => u.Login == FilterCombobox.SelectionBoxItem.ToString()).ToList();
|
||||
}
|
||||
|
||||
foreach (var item in temp)
|
||||
{
|
||||
Users.Add(item);
|
||||
}
|
||||
}
|
||||
|
||||
private void SortComboBox_OnSelectionChanged(object? sender, SelectionChangedEventArgs e)
|
||||
{
|
||||
DisplayServices();
|
||||
}
|
||||
|
||||
private void FilterCombobox_OnSelectionChanged(object? sender, SelectionChangedEventArgs e)
|
||||
{
|
||||
DisplayServices();
|
||||
}
|
||||
|
||||
private void Back_OnClick(object? sender, RoutedEventArgs e)
|
||||
{
|
||||
Close();
|
||||
// MainWindow mainWindow = new MainWindow();
|
||||
// mainWindow.Show();
|
||||
}
|
||||
|
||||
private void UpdateTimerText(TimeSpan time)
|
||||
{
|
||||
TimerText.Text = $"Осталось: {time:mm\\:ss}";
|
||||
}
|
||||
|
||||
private void LogoutUser()
|
||||
{
|
||||
Close();
|
||||
var mainWindow = new MainWindow();
|
||||
mainWindow.Show();
|
||||
}
|
||||
|
||||
protected override void OnClosed(EventArgs e)
|
||||
{
|
||||
TimerService.Instance.TimeUpdated -= UpdateTimerText;
|
||||
TimerService.Instance.TimerExpired -= LogoutUser;
|
||||
base.OnClosed(e);
|
||||
}
|
||||
}
|
16
dmeo040225/MainWindow.axaml
Normal file
16
dmeo040225/MainWindow.axaml
Normal file
@ -0,0 +1,16 @@
|
||||
<Window xmlns="https://github.com/avaloniaui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
||||
x:Class="dmeo040225.MainWindow"
|
||||
Title="dmeo040225">
|
||||
<DockPanel Background="Bisque">
|
||||
<StackPanel Spacing="15" Width="200" HorizontalAlignment="Center" VerticalAlignment="Center">
|
||||
<TextBox Watermark="login" x:Name="LoginName" Background="LightGray"/>
|
||||
<TextBox Watermark="password" x:Name="PasswordName" Background="LightGray"/>
|
||||
<Button x:Name="TogglePasswordVisibility" Content="Show" Background="LightGray" Click="TogglePasswordVisibilityClick"/>
|
||||
<Button Content="AUTH" Background="LightGray" Click="Authorization"/>
|
||||
</StackPanel>
|
||||
</DockPanel>
|
||||
</Window>
|
113
dmeo040225/MainWindow.axaml.cs
Normal file
113
dmeo040225/MainWindow.axaml.cs
Normal file
@ -0,0 +1,113 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using Avalonia.Controls;
|
||||
using Avalonia.Interactivity;
|
||||
using Avalonia.Media.Imaging;
|
||||
using dmeo040225.Models;
|
||||
using Npgsql.EntityFrameworkCore.PostgreSQL.Query.ExpressionTranslators.Internal;
|
||||
|
||||
namespace dmeo040225;
|
||||
|
||||
public partial class MainWindow : Window
|
||||
{
|
||||
private bool _isPasswordVisible;
|
||||
private List<User>? users;
|
||||
public MainWindow()
|
||||
{
|
||||
InitializeComponent();
|
||||
using var context = new DatabaseContext();
|
||||
|
||||
users = context.Users.Select(it => new User
|
||||
{
|
||||
Id = it.Id,
|
||||
Role = it.Role,
|
||||
Fio = it.Fio,
|
||||
Login = it.Login,
|
||||
Password = it.Password,
|
||||
}).ToList();
|
||||
PasswordName.PasswordChar = '*';
|
||||
}
|
||||
|
||||
public class UserPresenter() : User
|
||||
{
|
||||
Bitmap? Image
|
||||
{
|
||||
get
|
||||
{
|
||||
try
|
||||
{
|
||||
string absolutePath = Path.Combine(AppContext.BaseDirectory, Photopath);
|
||||
return new Bitmap(absolutePath);
|
||||
}
|
||||
catch
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void Authorization(object? sender, RoutedEventArgs e)
|
||||
{
|
||||
var login = LoginName.Text;
|
||||
var password = PasswordName.Text;
|
||||
|
||||
using var context = new DatabaseContext();
|
||||
var user = context.Users.FirstOrDefault(it => it.Login == login);
|
||||
if (user.Password == password)
|
||||
{
|
||||
user.Lastlogin = DateTime.Now;
|
||||
user.Logorno = true;
|
||||
context.Users.Update(user);
|
||||
context.SaveChanges();
|
||||
Console.WriteLine($"Success {user.Fio}");
|
||||
|
||||
switch (user.RoleId)
|
||||
{
|
||||
case 1:
|
||||
ClientWindow clientWindow = new ClientWindow();
|
||||
clientWindow.ShowDialog(this);
|
||||
break;
|
||||
case 2:
|
||||
SellerWindow sellerWindow = new SellerWindow(user);
|
||||
sellerWindow.ShowDialog(this);
|
||||
break;
|
||||
case 3:
|
||||
OlderWindow olderWindow = new OlderWindow(user);
|
||||
olderWindow.ShowDialog(this);
|
||||
break;
|
||||
case 4:
|
||||
AdminWindow adminWindow = new AdminWindow(user);
|
||||
adminWindow.ShowDialog(this);
|
||||
break;
|
||||
};
|
||||
}
|
||||
else
|
||||
{
|
||||
user.Lastlogin = DateTime.Now;
|
||||
user.Logorno = false;
|
||||
context.Users.Update(user);
|
||||
context.SaveChanges();
|
||||
Console.WriteLine("nah");
|
||||
}
|
||||
}
|
||||
|
||||
private void TogglePasswordVisibilityClick(object? sender, RoutedEventArgs e)
|
||||
{
|
||||
_isPasswordVisible = !_isPasswordVisible;
|
||||
|
||||
if (_isPasswordVisible)
|
||||
{
|
||||
PasswordName.PasswordChar = '\0';
|
||||
TogglePasswordVisibility.Content = "Hide";
|
||||
}
|
||||
else
|
||||
{
|
||||
PasswordName.PasswordChar = '•';
|
||||
TogglePasswordVisibility.Content = "Show";
|
||||
}
|
||||
}
|
||||
}
|
157
dmeo040225/Models/DatabaseContext.cs
Normal file
157
dmeo040225/Models/DatabaseContext.cs
Normal file
@ -0,0 +1,157 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace dmeo040225.Models;
|
||||
|
||||
public partial class DatabaseContext : DbContext
|
||||
{
|
||||
public DatabaseContext()
|
||||
{
|
||||
}
|
||||
|
||||
public DatabaseContext(DbContextOptions<DatabaseContext> options)
|
||||
: base(options)
|
||||
{
|
||||
}
|
||||
|
||||
public virtual DbSet<Order> Orders { get; set; }
|
||||
|
||||
public virtual DbSet<OrdersService> OrdersServices { get; set; }
|
||||
|
||||
public virtual DbSet<Role> Roles { get; set; }
|
||||
|
||||
public virtual DbSet<Service> Services { get; set; }
|
||||
|
||||
public virtual DbSet<User> Users { get; set; }
|
||||
|
||||
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
|
||||
#warning To protect potentially sensitive information in your connection string, you should move it out of source code. You can avoid scaffolding the connection string by using the Name= syntax to read it from configuration - see https://go.microsoft.com/fwlink/?linkid=2131148. For more guidance on storing connection strings, see https://go.microsoft.com/fwlink/?LinkId=723263.
|
||||
=> optionsBuilder.UseNpgsql("Host=localhost;Database=postgres;Username=postgres;Password=5432");
|
||||
|
||||
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
||||
{
|
||||
modelBuilder.Entity<Order>(entity =>
|
||||
{
|
||||
entity.HasKey(e => e.Id).HasName("orders_pkey");
|
||||
|
||||
entity.ToTable("orders");
|
||||
|
||||
entity.Property(e => e.Id).HasColumnName("id");
|
||||
entity.Property(e => e.Code)
|
||||
.HasMaxLength(255)
|
||||
.HasColumnName("code");
|
||||
entity.Property(e => e.Orderdata)
|
||||
.HasColumnType("timestamp without time zone")
|
||||
.HasColumnName("orderdata");
|
||||
entity.Property(e => e.Ordertime).HasColumnName("ordertime");
|
||||
entity.Property(e => e.Orederclosetime)
|
||||
.HasColumnType("timestamp without time zone")
|
||||
.HasColumnName("orederclosetime");
|
||||
entity.Property(e => e.Prokattime).HasColumnName("prokattime");
|
||||
entity.Property(e => e.Status)
|
||||
.HasMaxLength(255)
|
||||
.HasColumnName("status");
|
||||
entity.Property(e => e.UserId).HasColumnName("user_id");
|
||||
|
||||
entity.HasOne(d => d.User).WithMany(p => p.Orders)
|
||||
.HasForeignKey(d => d.UserId)
|
||||
.HasConstraintName("orders_user_id_fkey");
|
||||
});
|
||||
|
||||
modelBuilder.Entity<OrdersService>(entity =>
|
||||
{
|
||||
entity.HasKey(e => e.Id).HasName("orders_services_pk");
|
||||
|
||||
entity.ToTable("orders_services");
|
||||
|
||||
entity.Property(e => e.Id).HasColumnName("id");
|
||||
entity.Property(e => e.OrderId).HasColumnName("order_id");
|
||||
entity.Property(e => e.ServiceId).HasColumnName("service_id");
|
||||
|
||||
entity.HasOne(d => d.Order).WithMany(p => p.OrdersServices)
|
||||
.HasForeignKey(d => d.OrderId)
|
||||
.HasConstraintName("orders_services_order_id_fkey");
|
||||
|
||||
entity.HasOne(d => d.Service).WithMany(p => p.OrdersServices)
|
||||
.HasForeignKey(d => d.ServiceId)
|
||||
.HasConstraintName("orders_services_service_id_fkey");
|
||||
});
|
||||
|
||||
modelBuilder.Entity<Role>(entity =>
|
||||
{
|
||||
entity.HasKey(e => e.Id).HasName("role_pkey");
|
||||
|
||||
entity.ToTable("role");
|
||||
|
||||
entity.Property(e => e.Id).HasColumnName("id");
|
||||
entity.Property(e => e.Name)
|
||||
.HasMaxLength(255)
|
||||
.HasColumnName("name");
|
||||
});
|
||||
|
||||
modelBuilder.Entity<Service>(entity =>
|
||||
{
|
||||
entity.HasKey(e => e.Id).HasName("services_pkey");
|
||||
|
||||
entity.ToTable("services");
|
||||
|
||||
entity.Property(e => e.Id).HasColumnName("id");
|
||||
entity.Property(e => e.Code)
|
||||
.HasMaxLength(255)
|
||||
.HasColumnName("code");
|
||||
entity.Property(e => e.Cost)
|
||||
.HasMaxLength(255)
|
||||
.HasColumnName("cost");
|
||||
entity.Property(e => e.Name)
|
||||
.HasMaxLength(255)
|
||||
.HasColumnName("name");
|
||||
});
|
||||
|
||||
modelBuilder.Entity<User>(entity =>
|
||||
{
|
||||
entity.HasKey(e => e.Id).HasName("users_pkey");
|
||||
|
||||
entity.ToTable("users");
|
||||
|
||||
entity.Property(e => e.Id).HasColumnName("id");
|
||||
entity.Property(e => e.Adress)
|
||||
.HasMaxLength(255)
|
||||
.HasColumnName("adress");
|
||||
entity.Property(e => e.Birthday)
|
||||
.HasColumnType("timestamp without time zone")
|
||||
.HasColumnName("birthday");
|
||||
entity.Property(e => e.Codeclient)
|
||||
.HasMaxLength(255)
|
||||
.HasColumnName("codeclient");
|
||||
entity.Property(e => e.Fio)
|
||||
.HasMaxLength(255)
|
||||
.HasColumnName("fio");
|
||||
entity.Property(e => e.Lastlogin)
|
||||
.HasColumnType("timestamp without time zone")
|
||||
.HasColumnName("lastlogin");
|
||||
entity.Property(e => e.Login)
|
||||
.HasMaxLength(255)
|
||||
.HasColumnName("login");
|
||||
entity.Property(e => e.Logorno).HasColumnName("logorno");
|
||||
entity.Property(e => e.Passport)
|
||||
.HasMaxLength(255)
|
||||
.HasColumnName("passport");
|
||||
entity.Property(e => e.Password)
|
||||
.HasMaxLength(255)
|
||||
.HasColumnName("password");
|
||||
entity.Property(e => e.Photopath)
|
||||
.HasMaxLength(255)
|
||||
.HasColumnName("photopath");
|
||||
entity.Property(e => e.RoleId).HasColumnName("role_id");
|
||||
|
||||
entity.HasOne(d => d.Role).WithMany(p => p.Users)
|
||||
.HasForeignKey(d => d.RoleId)
|
||||
.HasConstraintName("users_role_id_fkey");
|
||||
});
|
||||
|
||||
OnModelCreatingPartial(modelBuilder);
|
||||
}
|
||||
|
||||
partial void OnModelCreatingPartial(ModelBuilder modelBuilder);
|
||||
}
|
27
dmeo040225/Models/Order.cs
Normal file
27
dmeo040225/Models/Order.cs
Normal file
@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace dmeo040225.Models;
|
||||
|
||||
public partial class Order
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string Code { get; set; } = null!;
|
||||
|
||||
public DateTime Orderdata { get; set; }
|
||||
|
||||
public TimeOnly Ordertime { get; set; }
|
||||
|
||||
public int UserId { get; set; }
|
||||
|
||||
public string Status { get; set; } = null!;
|
||||
|
||||
public DateTime? Orederclosetime { get; set; }
|
||||
|
||||
public int Prokattime { get; set; }
|
||||
|
||||
public virtual ICollection<OrdersService> OrdersServices { get; set; } = new List<OrdersService>();
|
||||
|
||||
public virtual User User { get; set; } = null!;
|
||||
}
|
17
dmeo040225/Models/OrdersService.cs
Normal file
17
dmeo040225/Models/OrdersService.cs
Normal file
@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace dmeo040225.Models;
|
||||
|
||||
public partial class OrdersService
|
||||
{
|
||||
public int OrderId { get; set; }
|
||||
|
||||
public int ServiceId { get; set; }
|
||||
|
||||
public int Id { get; set; }
|
||||
|
||||
public virtual Order Order { get; set; } = null!;
|
||||
|
||||
public virtual Service Service { get; set; } = null!;
|
||||
}
|
13
dmeo040225/Models/Role.cs
Normal file
13
dmeo040225/Models/Role.cs
Normal file
@ -0,0 +1,13 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace dmeo040225.Models;
|
||||
|
||||
public partial class Role
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string Name { get; set; } = null!;
|
||||
|
||||
public virtual ICollection<User> Users { get; set; } = new List<User>();
|
||||
}
|
17
dmeo040225/Models/Service.cs
Normal file
17
dmeo040225/Models/Service.cs
Normal file
@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace dmeo040225.Models;
|
||||
|
||||
public partial class Service
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public string Name { get; set; } = null!;
|
||||
|
||||
public string Code { get; set; } = null!;
|
||||
|
||||
public string Cost { get; set; } = null!;
|
||||
|
||||
public virtual ICollection<OrdersService> OrdersServices { get; set; } = new List<OrdersService>();
|
||||
}
|
35
dmeo040225/Models/User.cs
Normal file
35
dmeo040225/Models/User.cs
Normal file
@ -0,0 +1,35 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace dmeo040225.Models;
|
||||
|
||||
public partial class User
|
||||
{
|
||||
public int Id { get; set; }
|
||||
|
||||
public int RoleId { get; set; }
|
||||
|
||||
public string Fio { get; set; } = null!;
|
||||
|
||||
public string Login { get; set; } = null!;
|
||||
|
||||
public string Password { get; set; } = null!;
|
||||
|
||||
public DateTime? Lastlogin { get; set; }
|
||||
|
||||
public bool Logorno { get; set; }
|
||||
|
||||
public string? Codeclient { get; set; }
|
||||
|
||||
public string? Passport { get; set; }
|
||||
|
||||
public DateTime? Birthday { get; set; }
|
||||
|
||||
public string? Adress { get; set; }
|
||||
|
||||
public string? Photopath { get; set; }
|
||||
|
||||
public virtual ICollection<Order> Orders { get; set; } = new List<Order>();
|
||||
|
||||
public virtual Role Role { get; set; } = null!;
|
||||
}
|
31
dmeo040225/NewOrder.axaml
Normal file
31
dmeo040225/NewOrder.axaml
Normal file
@ -0,0 +1,31 @@
|
||||
<Window xmlns="https://github.com/avaloniaui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
||||
x:Class="dmeo040225.NewOrder"
|
||||
Title="NewOrder">
|
||||
<Border Background="Bisque">
|
||||
<DockPanel>
|
||||
<StackPanel DockPanel.Dock="Top" Orientation="Horizontal" Background="Gray" Height="30">
|
||||
<Button Content="Назад" Click="Back_OnClick" Width="120" Background="LightGray" Foreground="Black" HorizontalAlignment="Left" DockPanel.Dock="Left"/>
|
||||
<TextBlock x:Name="TimerText" Foreground="White" Margin="10,5,0,0" HorizontalAlignment="Center"/>
|
||||
</StackPanel>
|
||||
<StackPanel Spacing="5" VerticalAlignment="Center" HorizontalAlignment="Center">
|
||||
<TextBlock Text="ID заказа:"/>
|
||||
<TextBox x:Name="OrderIdTextBox" IsReadOnly="True"/>
|
||||
|
||||
<TextBlock Text="Время проката в минутах:"/>
|
||||
<TextBox x:Name="PeriodTextBox"/>
|
||||
|
||||
<TextBlock Text="Выберите клиента:"/>
|
||||
<ComboBox x:Name="OrderClientComboBox"/>
|
||||
|
||||
<TextBlock Text="Выберите услуги:"/>
|
||||
<ListBox x:Name="OrderServicesListBox" SelectionMode="Multiple"/>
|
||||
|
||||
<Button Content="Сформировать заказ" Click="CreateOrderButton_OnClick"/>
|
||||
</StackPanel>
|
||||
</DockPanel>
|
||||
</Border>
|
||||
</Window>
|
185
dmeo040225/NewOrder.axaml.cs
Normal file
185
dmeo040225/NewOrder.axaml.cs
Normal file
@ -0,0 +1,185 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using Avalonia.Controls;
|
||||
using Avalonia.Interactivity;
|
||||
using System.IO;
|
||||
using ZXing;
|
||||
using ZXing.Common;
|
||||
using PdfSharpCore.Drawing;
|
||||
using PdfSharpCore.Pdf;
|
||||
using SixLabors.ImageSharp;
|
||||
using SixLabors.ImageSharp.PixelFormats;
|
||||
using SixLabors.ImageSharp.Processing;
|
||||
using dmeo040225.Models;
|
||||
using dmeo040225.Services;
|
||||
|
||||
namespace dmeo040225;
|
||||
|
||||
public partial class NewOrder : Window
|
||||
{
|
||||
public List<string> OrderServicesList { get; }
|
||||
public List<string> OrderClientsList { get; }
|
||||
public NewOrder()
|
||||
{
|
||||
InitializeComponent();
|
||||
LoadOrderId();
|
||||
using var context = new DatabaseContext();
|
||||
|
||||
OrderClientsList = context.Users.Select(it => it.Fio).ToList();
|
||||
OrderClientComboBox.ItemsSource = OrderClientsList;
|
||||
|
||||
OrderServicesList = context.Services.Select(it => it.Name).ToList();
|
||||
OrderServicesListBox.ItemsSource = OrderServicesList;
|
||||
|
||||
// Подключаемся к обновлениям таймера
|
||||
TimerService.Instance.TimeUpdated += UpdateTimerText;
|
||||
TimerService.Instance.TimerExpired += LogoutUser;
|
||||
}
|
||||
|
||||
private void UpdateTimerText(TimeSpan time)
|
||||
{
|
||||
TimerText.Text = $"Осталось: {time:mm\\:ss}";
|
||||
}
|
||||
|
||||
private void LogoutUser()
|
||||
{
|
||||
Close();
|
||||
var mainWindow = new MainWindow();
|
||||
mainWindow.Show();
|
||||
}
|
||||
|
||||
private void Back_OnClick(object? sender, RoutedEventArgs e)
|
||||
{
|
||||
Close();
|
||||
}
|
||||
|
||||
protected override void OnClosed(EventArgs e)
|
||||
{
|
||||
TimerService.Instance.TimeUpdated -= UpdateTimerText;
|
||||
TimerService.Instance.TimerExpired -= LogoutUser;
|
||||
base.OnClosed(e);
|
||||
}
|
||||
|
||||
private void LoadOrderId()
|
||||
{
|
||||
using var context = new DatabaseContext();
|
||||
var maxId = context.Orders.Any() ? context.Orders.Max(order => order.Id) : 0;
|
||||
var newOrderId = maxId + 1;
|
||||
OrderIdTextBox.Text = newOrderId.ToString();
|
||||
}
|
||||
|
||||
private void CreateOrderButton_OnClick(object? sender, RoutedEventArgs e)
|
||||
{
|
||||
using var context = new DatabaseContext();
|
||||
|
||||
var maxId = context.Orders.Any() ? context.Orders.Max(order => order.Id) : 0;
|
||||
var newOrderId = maxId + 1;
|
||||
var newCodeOrder = $"{newOrderId}/{DateTime.Now:dd.MM.yyyy}";
|
||||
var newPeriod = int.TryParse(PeriodTextBox.Text, out int period) ? period : 0;
|
||||
|
||||
var selectedClientFio = OrderClientComboBox.SelectedItem as string;
|
||||
if (string.IsNullOrEmpty(selectedClientFio))
|
||||
{
|
||||
Console.WriteLine("Выберите клиента!");
|
||||
return;
|
||||
}
|
||||
|
||||
var client = context.Users.FirstOrDefault(it => it.Fio == selectedClientFio);
|
||||
if (client == null)
|
||||
{
|
||||
Console.WriteLine("Ошибка: клиент не найден!");
|
||||
return;
|
||||
}
|
||||
|
||||
var selectedServices = OrderServicesListBox.SelectedItems.Cast<string>().ToList();
|
||||
if (selectedServices.Count == 0)
|
||||
{
|
||||
Console.WriteLine("Выберите хотя бы одну услугу!");
|
||||
return;
|
||||
}
|
||||
|
||||
var services = context.Services.Where(s => selectedServices.Contains(s.Name)).ToList();
|
||||
|
||||
var newOrder = new Order
|
||||
{
|
||||
Id = newOrderId,
|
||||
Code = newCodeOrder,
|
||||
Orderdata = DateTime.Now,
|
||||
Ordertime = TimeOnly.FromDateTime(DateTime.Now),
|
||||
UserId = client.Id,
|
||||
Status = "Открыт",
|
||||
Prokattime = newPeriod
|
||||
};
|
||||
|
||||
context.Orders.Add(newOrder);
|
||||
context.SaveChanges();
|
||||
|
||||
foreach (var service in services)
|
||||
{
|
||||
var orderService = new OrdersService
|
||||
{
|
||||
OrderId = newOrder.Id,
|
||||
ServiceId = service.Id
|
||||
};
|
||||
context.OrdersServices.Add(orderService);
|
||||
}
|
||||
|
||||
context.SaveChanges();
|
||||
LoadOrderId();
|
||||
|
||||
Console.WriteLine("Заказ создан");
|
||||
|
||||
GenerateBarcodeAndSavePdf(newOrderId, DateTime.Now, newPeriod);
|
||||
}
|
||||
|
||||
public void GenerateBarcodeAndSavePdf(int orderId, DateTime orderDate, int rentalPeriod)
|
||||
{
|
||||
var random = new Random();
|
||||
string uniqueCode = string.Concat(Enumerable.Range(0, 6).Select(_ => random.Next(0, 10)));
|
||||
|
||||
string barcodeData = $"{orderId}{orderDate:ddMMyy}{rentalPeriod}{uniqueCode}";
|
||||
|
||||
var writer = new BarcodeWriterPixelData
|
||||
{
|
||||
Format = BarcodeFormat.CODE_128,
|
||||
Options = new EncodingOptions
|
||||
{
|
||||
Height = 229,
|
||||
Width = 350,
|
||||
Margin = 0
|
||||
}
|
||||
};
|
||||
var pixelData = writer.Write(barcodeData);
|
||||
|
||||
using var image = new Image<Rgba32>(pixelData.Width, pixelData.Height);
|
||||
image.Mutate(ctx =>
|
||||
{
|
||||
for (int y = 0; y < pixelData.Height; y++)
|
||||
{
|
||||
for (int x = 0; x < pixelData.Width; x++)
|
||||
{
|
||||
byte value = pixelData.Pixels[(y * pixelData.Width + x) * 4];
|
||||
image[x, y] = new Rgba32(value, value, value, 255);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
using var ms = new MemoryStream();
|
||||
image.SaveAsPng(ms);
|
||||
ms.Position = 0;
|
||||
|
||||
using var document = new PdfDocument();
|
||||
var page = document.AddPage();
|
||||
var gfx = XGraphics.FromPdfPage(page);
|
||||
|
||||
using var img = XImage.FromStream(() => new MemoryStream(ms.ToArray()));
|
||||
gfx.DrawImage(img, 10, 10, 150, 50);
|
||||
|
||||
gfx.DrawString(barcodeData, new XFont("Arial", 10), XBrushes.Black, new XPoint(10, 70));
|
||||
|
||||
string filePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Desktop), $"Order_{orderId}.pdf");
|
||||
document.Save(filePath);
|
||||
Console.WriteLine($"PDF сохранен: {filePath}");
|
||||
}
|
||||
}
|
23
dmeo040225/OlderWindow.axaml
Normal file
23
dmeo040225/OlderWindow.axaml
Normal file
@ -0,0 +1,23 @@
|
||||
<Window xmlns="https://github.com/avaloniaui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
||||
x:Class="dmeo040225.OlderWindow"
|
||||
Title="OlderWindow">
|
||||
<Border Background="Bisque">
|
||||
<DockPanel>
|
||||
<StackPanel DockPanel.Dock="Top" Orientation="Horizontal" Background="Gray" Height="30">
|
||||
<Button Content="Назад" Click="Back_OnClick" Width="120" Background="LightGray" Foreground="Black" HorizontalAlignment="Left" DockPanel.Dock="Left"/>
|
||||
<TextBlock x:Name="TimerText" Foreground="White" Margin="10,5,0,0" HorizontalAlignment="Center"/>
|
||||
</StackPanel>
|
||||
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" Spacing="15">
|
||||
<Image x:Name="Image" Width="150" Height="150"/>
|
||||
<TextBlock x:Name="FioName" Foreground="Black"/>
|
||||
<TextBlock x:Name="RoleName" Foreground="Black"/>
|
||||
<Button Content="Сформировать заказ" Click="NewOrder_OnClick" Background="LightGray" Foreground="Black" Width="170"/>
|
||||
<Button Content="Принять товар" Click="GetOrder_OnClick" Background="LightGray" Foreground="Black" Width="170"/>
|
||||
</StackPanel>
|
||||
</DockPanel>
|
||||
</Border>
|
||||
</Window>
|
70
dmeo040225/OlderWindow.axaml.cs
Normal file
70
dmeo040225/OlderWindow.axaml.cs
Normal file
@ -0,0 +1,70 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
using Avalonia;
|
||||
using Avalonia.Controls;
|
||||
using Avalonia.Interactivity;
|
||||
using Avalonia.Markup.Xaml;
|
||||
using Avalonia.Media.Imaging;
|
||||
using dmeo040225.Models;
|
||||
using dmeo040225.Services;
|
||||
|
||||
namespace dmeo040225;
|
||||
|
||||
public partial class OlderWindow : Window
|
||||
{
|
||||
public OlderWindow(User user)
|
||||
{
|
||||
InitializeComponent();
|
||||
|
||||
using var context = new DatabaseContext();
|
||||
var role = context.Roles.FirstOrDefault(it => it.Id == user.RoleId).Name;
|
||||
|
||||
Image.Source = new Bitmap(user.Photopath);
|
||||
FioName.Text = user.Fio;
|
||||
RoleName.Text = role;
|
||||
|
||||
TimerService.Instance.TimeUpdated += UpdateTimerText;
|
||||
TimerService.Instance.TimerExpired += LogoutUser;
|
||||
|
||||
TimerService.Instance.Start();
|
||||
}
|
||||
|
||||
private void NewOrder_OnClick(object? sender, RoutedEventArgs e)
|
||||
{
|
||||
NewOrder newOrder = new NewOrder();
|
||||
newOrder.ShowDialog(this);
|
||||
}
|
||||
|
||||
private void GetOrder_OnClick(object? sender, RoutedEventArgs e)
|
||||
{
|
||||
GetOrderWindow getOrderWindow = new GetOrderWindow();
|
||||
getOrderWindow.ShowDialog(this);
|
||||
}
|
||||
|
||||
private void Back_OnClick(object? sender, RoutedEventArgs e)
|
||||
{
|
||||
TimerService.Instance.Reset();
|
||||
Close();
|
||||
// MainWindow mainWindow = new MainWindow();
|
||||
// mainWindow.ShowDialog(this);
|
||||
}
|
||||
|
||||
private void UpdateTimerText(TimeSpan time)
|
||||
{
|
||||
TimerText.Text = $"Осталось: {time:mm\\:ss}";
|
||||
}
|
||||
|
||||
private void LogoutUser()
|
||||
{
|
||||
Close();
|
||||
var mainWindow = new MainWindow();
|
||||
mainWindow.Show();
|
||||
}
|
||||
|
||||
protected override void OnClosed(EventArgs e)
|
||||
{
|
||||
TimerService.Instance.TimeUpdated -= UpdateTimerText;
|
||||
TimerService.Instance.TimerExpired -= LogoutUser;
|
||||
base.OnClosed(e);
|
||||
}
|
||||
}
|
21
dmeo040225/Program.cs
Normal file
21
dmeo040225/Program.cs
Normal file
@ -0,0 +1,21 @@
|
||||
using Avalonia;
|
||||
using System;
|
||||
|
||||
namespace dmeo040225;
|
||||
|
||||
class Program
|
||||
{
|
||||
// Initialization code. Don't use any Avalonia, third-party APIs or any
|
||||
// SynchronizationContext-reliant code before AppMain is called: things aren't initialized
|
||||
// yet and stuff might break.
|
||||
[STAThread]
|
||||
public static void Main(string[] args) => BuildAvaloniaApp()
|
||||
.StartWithClassicDesktopLifetime(args);
|
||||
|
||||
// Avalonia configuration, don't remove; also used by visual designer.
|
||||
public static AppBuilder BuildAvaloniaApp()
|
||||
=> AppBuilder.Configure<App>()
|
||||
.UsePlatformDetect()
|
||||
.WithInterFont()
|
||||
.LogToTrace();
|
||||
}
|
24
dmeo040225/SellerWindow.axaml
Normal file
24
dmeo040225/SellerWindow.axaml
Normal file
@ -0,0 +1,24 @@
|
||||
<Window xmlns="https://github.com/avaloniaui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
||||
x:Class="dmeo040225.SellerWindow"
|
||||
Title="SellerWindow">
|
||||
<Border Background="Bisque">
|
||||
<DockPanel>
|
||||
<StackPanel DockPanel.Dock="Top" Orientation="Horizontal" Background="Gray" Height="30">
|
||||
<Button Content="Назад" Click="Back_OnClick" Width="120" Background="LightGray" Foreground="Black" HorizontalAlignment="Left" DockPanel.Dock="Left"/>
|
||||
<TextBlock x:Name="TimerText" Foreground="White" Margin="10,5,0,0" HorizontalAlignment="Center"/>
|
||||
</StackPanel>
|
||||
|
||||
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" Spacing="15">
|
||||
<Image x:Name="Image" Width="150" Height="150"/>
|
||||
<TextBlock x:Name="FioName" Foreground="Black"/>
|
||||
<TextBlock x:Name="RoleName" Foreground="Black"/>
|
||||
<Button Content="Сформировать заказ" Click="NewOrder_OnClick" Background="LightGray" Width="170"/>
|
||||
<Button Content="История заказов" Click="HistoryOrder_OnClick" Background="LightGray" Width="170"/>
|
||||
</StackPanel>
|
||||
</DockPanel>
|
||||
</Border>
|
||||
</Window>
|
72
dmeo040225/SellerWindow.axaml.cs
Normal file
72
dmeo040225/SellerWindow.axaml.cs
Normal file
@ -0,0 +1,72 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
using Avalonia.Controls;
|
||||
using Avalonia.Interactivity;
|
||||
using Avalonia.Media.Imaging;
|
||||
using dmeo040225.Models;
|
||||
using dmeo040225.Services;
|
||||
|
||||
namespace dmeo040225;
|
||||
|
||||
public partial class SellerWindow : Window
|
||||
{
|
||||
private readonly User _currentUser;
|
||||
|
||||
public SellerWindow(User user)
|
||||
{
|
||||
InitializeComponent();
|
||||
_currentUser = user;
|
||||
|
||||
using var context = new DatabaseContext();
|
||||
var role = context.Roles.FirstOrDefault(it => it.Id == user.RoleId).Name;
|
||||
|
||||
Image.Source = new Bitmap(user.Photopath);
|
||||
FioName.Text = user.Fio;
|
||||
RoleName.Text = role;
|
||||
|
||||
TimerService.Instance.TimeUpdated += UpdateTimerText;
|
||||
TimerService.Instance.TimerExpired += LogoutUser;
|
||||
|
||||
if (_currentUser.RoleId == 2)
|
||||
{
|
||||
TimerService.Instance.Start(); // Начинаем отсчёт, если ещё не запущен
|
||||
}
|
||||
}
|
||||
|
||||
private void UpdateTimerText(TimeSpan time)
|
||||
{
|
||||
TimerText.Text = $"Осталось: {time:mm\\:ss}";
|
||||
}
|
||||
|
||||
private void LogoutUser()
|
||||
{
|
||||
Close();
|
||||
var mainWindow = new MainWindow();
|
||||
mainWindow.Show();
|
||||
}
|
||||
|
||||
private void NewOrder_OnClick(object? sender, RoutedEventArgs e)
|
||||
{
|
||||
NewOrder newOrder = new NewOrder();
|
||||
newOrder.ShowDialog(this);
|
||||
}
|
||||
|
||||
private void HistoryOrder_OnClick(object? sender, RoutedEventArgs e)
|
||||
{
|
||||
HistoryOrdersWindow historyOrdersWindow = new HistoryOrdersWindow();
|
||||
historyOrdersWindow.ShowDialog(this);
|
||||
}
|
||||
|
||||
private void Back_OnClick(object? sender, RoutedEventArgs e)
|
||||
{
|
||||
TimerService.Instance.Reset();
|
||||
Close();
|
||||
}
|
||||
|
||||
protected override void OnClosed(EventArgs e)
|
||||
{
|
||||
TimerService.Instance.TimeUpdated -= UpdateTimerText;
|
||||
TimerService.Instance.TimerExpired -= LogoutUser;
|
||||
base.OnClosed(e);
|
||||
}
|
||||
}
|
46
dmeo040225/TimeService.cs
Normal file
46
dmeo040225/TimeService.cs
Normal file
@ -0,0 +1,46 @@
|
||||
using System;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using Avalonia.Threading;
|
||||
|
||||
namespace dmeo040225.Services;
|
||||
|
||||
public class TimerService
|
||||
{
|
||||
private TimeSpan _timeRemaining = TimeSpan.FromMinutes(20);
|
||||
private CancellationTokenSource _cts = new();
|
||||
public event Action<TimeSpan>? TimeUpdated;
|
||||
public event Action? TimerExpired;
|
||||
|
||||
private static TimerService? _instance;
|
||||
public static TimerService Instance => _instance ??= new TimerService();
|
||||
|
||||
private TimerService() { }
|
||||
|
||||
public void Start()
|
||||
{
|
||||
_cts.Cancel();
|
||||
_cts = new CancellationTokenSource();
|
||||
|
||||
Task.Run(async () =>
|
||||
{
|
||||
while (_timeRemaining > TimeSpan.Zero)
|
||||
{
|
||||
await Task.Delay(TimeSpan.FromSeconds(1), _cts.Token);
|
||||
_timeRemaining -= TimeSpan.FromSeconds(1);
|
||||
Dispatcher.UIThread.Post(() => TimeUpdated?.Invoke(_timeRemaining));
|
||||
}
|
||||
Dispatcher.UIThread.Post(() => TimerExpired?.Invoke());
|
||||
}, _cts.Token);
|
||||
}
|
||||
|
||||
public void Reset()
|
||||
{
|
||||
_timeRemaining = TimeSpan.FromMinutes(20);
|
||||
}
|
||||
|
||||
public void Stop()
|
||||
{
|
||||
_cts.Cancel();
|
||||
}
|
||||
}
|
18
dmeo040225/app.manifest
Normal file
18
dmeo040225/app.manifest
Normal file
@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<!-- This manifest is used on Windows only.
|
||||
Don't remove it as it might cause problems with window transparency and embedded controls.
|
||||
For more details visit https://learn.microsoft.com/en-us/windows/win32/sbscs/application-manifests -->
|
||||
<assemblyIdentity version="1.0.0.0" name="dmeo040225.Desktop"/>
|
||||
|
||||
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
|
||||
<application>
|
||||
<!-- A list of the Windows versions that this application has been tested on
|
||||
and is designed to work with. Uncomment the appropriate elements
|
||||
and Windows will automatically select the most compatible environment. -->
|
||||
|
||||
<!-- Windows 10 -->
|
||||
<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}" />
|
||||
</application>
|
||||
</compatibility>
|
||||
</assembly>
|
BIN
dmeo040225/bin/.DS_Store
vendored
Normal file
BIN
dmeo040225/bin/.DS_Store
vendored
Normal file
Binary file not shown.
BIN
dmeo040225/bin/Debug/.DS_Store
vendored
Normal file
BIN
dmeo040225/bin/Debug/.DS_Store
vendored
Normal file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/.DS_Store
vendored
Normal file
BIN
dmeo040225/bin/Debug/net8.0/.DS_Store
vendored
Normal file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.Base.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.Base.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.Controls.ColorPicker.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.Controls.ColorPicker.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.Controls.DataGrid.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.Controls.DataGrid.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.Controls.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.Controls.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.DesignerSupport.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.DesignerSupport.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.Desktop.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.Desktop.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.Diagnostics.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.Diagnostics.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.Dialogs.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.Dialogs.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.Fonts.Inter.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.Fonts.Inter.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.FreeDesktop.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.FreeDesktop.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.Markup.Xaml.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.Markup.Xaml.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.Markup.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.Markup.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.Metal.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.Metal.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.MicroCom.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.MicroCom.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.Native.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.Native.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.OpenGL.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.OpenGL.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.Remote.Protocol.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.Remote.Protocol.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.Skia.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.Skia.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.Themes.Fluent.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.Themes.Fluent.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.Themes.Simple.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.Themes.Simple.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.Vulkan.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.Vulkan.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.Win32.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.Win32.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.X11.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.X11.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Avalonia.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/HarfBuzzSharp.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/HarfBuzzSharp.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Humanizer.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Humanizer.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/ICSharpCode.SharpZipLib.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/ICSharpCode.SharpZipLib.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/MicroCom.Runtime.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/MicroCom.Runtime.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Microsoft.Extensions.Caching.Abstractions.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Microsoft.Extensions.Caching.Abstractions.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll
Executable file
Binary file not shown.
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll
Executable file
Binary file not shown.
BIN
dmeo040225/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll
Executable file
BIN
dmeo040225/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll
Executable file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user