This commit is contained in:
studen 2025-02-04 15:40:01 +03:00
parent eb9909704e
commit 577612af5e
21 changed files with 1144 additions and 22 deletions

View File

@ -4,10 +4,26 @@ namespace Demka_Snova_1.Hardik.Conect;
public class AppDbContext : DbContext
{
public DbSet<SotrudnikDao> sotrudnik { get; set; }
protected override void OnConfiguring(DbContextOptionsBuilder oB)
{
oB.UseSqlServer("Hoi");
oB.UseSqlServer("Host=45.67.56.214;Port=5421;Username=user16;Password=dZ28IVE5;Database=user16");
}
public DbSet<SotrudnikDao> sotrudnik { get; set; }
public DbSet<uslugiDao> uslugi { get; set; }
public DbSet<ordersDao> orders { get; set; }
public DbSet<KlientDao> klient { get; set; }
protected override void OnModelCreating(ModelBuilder mb)
{
mb.Entity<KlientDao>().HasKey(klient => klient.Code);
mb.Entity<KlientDao>().Property(klient => klient.Code).ValueGeneratedOnAdd();
mb.Entity<ordersDao>().HasKey(orders => orders.ID);
mb.Entity<ordersDao>().Property(orders => orders.ID).ValueGeneratedOnAdd();
mb.Entity<uslugiDao>().HasKey(uslugi => uslugi.ID);
mb.Entity<SotrudnikDao>().HasKey(sotrudnik => sotrudnik.ID);
}
}

View File

@ -11,8 +11,8 @@
<TextBox x:Name="UsernameTextBox" Watermark="Логин" />
<StackPanel Orientation="Horizontal">
<TextBox x:Name="PasswordTextBox" Watermark="Пароль" PasswordChar="*" />
<Button x:Name="TogglePasswordButton" Content="👁" Margin="5" />
<Button x:Name="TogglePasswordButton" Content="👁" Margin="0,5, 0,0" Click="TogglePasswordButton_Click" />
</StackPanel>
<Button x:Name="LoginButton" Content="Войти" Margin="0,10" />
<Button x:Name="LoginButton" Content="Войти" Margin="0,10" Click="LoginButton_Click" />
</StackPanel>
</Window>

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

View File

@ -6,6 +6,7 @@
"version": "8.0.0"
},
"configProperties": {
"System.Reflection.NullabilityInfoContext.IsSupported": true,
"System.Runtime.InteropServices.BuiltInComInterop.IsSupported": true,
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
}

View File

@ -22,18 +22,47 @@
/home/class_student/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Vulkan.dll
/home/class_student/.nuget/packages/avalonia.win32/11.2.1/lib/net8.0/Avalonia.Win32.dll
/home/class_student/.nuget/packages/avalonia.x11/11.2.1/lib/net8.0/Avalonia.X11.dll
/home/class_student/.nuget/packages/azure.core/1.38.0/lib/net6.0/Azure.Core.dll
/home/class_student/.nuget/packages/azure.identity/1.11.4/lib/netstandard2.0/Azure.Identity.dll
/home/class_student/.nuget/packages/harfbuzzsharp/7.3.0.2/lib/net6.0/HarfBuzzSharp.dll
/home/class_student/.nuget/packages/microcom.runtime/0.11.0/lib/net5.0/MicroCom.Runtime.dll
/home/class_student/.nuget/packages/microsoft.bcl.asyncinterfaces/1.1.1/ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/Microsoft.CSharp.dll
/home/class_student/.nuget/packages/microsoft.data.sqlclient/5.1.6/ref/net6.0/Microsoft.Data.SqlClient.dll
/home/class_student/.nuget/packages/microsoft.entityframeworkcore.abstractions/9.0.1/lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll
/home/class_student/.nuget/packages/microsoft.entityframeworkcore/9.0.1/lib/net8.0/Microsoft.EntityFrameworkCore.dll
/home/class_student/.nuget/packages/microsoft.entityframeworkcore.relational/9.0.1/lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll
/home/class_student/.nuget/packages/microsoft.entityframeworkcore.sqlserver/9.0.1/lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll
/home/class_student/.nuget/packages/microsoft.extensions.caching.abstractions/9.0.1/lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll
/home/class_student/.nuget/packages/microsoft.extensions.caching.memory/9.0.1/lib/net8.0/Microsoft.Extensions.Caching.Memory.dll
/home/class_student/.nuget/packages/microsoft.extensions.configuration.abstractions/9.0.1/lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll
/home/class_student/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/9.0.1/lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll
/home/class_student/.nuget/packages/microsoft.extensions.dependencyinjection/9.0.1/lib/net8.0/Microsoft.Extensions.DependencyInjection.dll
/home/class_student/.nuget/packages/microsoft.extensions.logging.abstractions/9.0.1/lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll
/home/class_student/.nuget/packages/microsoft.extensions.logging/9.0.1/lib/net8.0/Microsoft.Extensions.Logging.dll
/home/class_student/.nuget/packages/microsoft.extensions.options/9.0.1/lib/net8.0/Microsoft.Extensions.Options.dll
/home/class_student/.nuget/packages/microsoft.extensions.primitives/9.0.1/lib/net8.0/Microsoft.Extensions.Primitives.dll
/home/class_student/.nuget/packages/microsoft.identity.client/4.61.3/lib/net6.0/Microsoft.Identity.Client.dll
/home/class_student/.nuget/packages/microsoft.identity.client.extensions.msal/4.61.3/lib/net6.0/Microsoft.Identity.Client.Extensions.Msal.dll
/home/class_student/.nuget/packages/microsoft.identitymodel.abstractions/6.35.0/lib/net6.0/Microsoft.IdentityModel.Abstractions.dll
/home/class_student/.nuget/packages/microsoft.identitymodel.jsonwebtokens/6.35.0/lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll
/home/class_student/.nuget/packages/microsoft.identitymodel.logging/6.35.0/lib/net6.0/Microsoft.IdentityModel.Logging.dll
/home/class_student/.nuget/packages/microsoft.identitymodel.protocols/6.35.0/lib/net6.0/Microsoft.IdentityModel.Protocols.dll
/home/class_student/.nuget/packages/microsoft.identitymodel.protocols.openidconnect/6.35.0/lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
/home/class_student/.nuget/packages/microsoft.identitymodel.tokens/6.35.0/lib/net6.0/Microsoft.IdentityModel.Tokens.dll
/home/class_student/.nuget/packages/microsoft.sqlserver.server/1.0.0/lib/netstandard2.0/Microsoft.SqlServer.Server.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/Microsoft.VisualBasic.Core.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/Microsoft.VisualBasic.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/Microsoft.Win32.Primitives.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/Microsoft.Win32.Registry.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/mscorlib.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/netstandard.dll
/home/class_student/.nuget/packages/npgsql/9.0.2/lib/net8.0/Npgsql.dll
/home/class_student/.nuget/packages/npgsql.entityframeworkcore.postgresql/9.0.3/lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll
/home/class_student/.nuget/packages/skiasharp/2.88.8/lib/net6.0/SkiaSharp.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.AppContext.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Buffers.dll
/home/class_student/.nuget/packages/system.clientmodel/1.0.0/lib/net6.0/System.ClientModel.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Collections.Concurrent.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Collections.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Collections.Immutable.dll
@ -53,7 +82,7 @@
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Data.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Diagnostics.Contracts.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Diagnostics.Debug.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Diagnostics.DiagnosticSource.dll
/home/class_student/.nuget/packages/system.diagnostics.diagnosticsource/9.0.1/lib/net8.0/System.Diagnostics.DiagnosticSource.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Diagnostics.FileVersionInfo.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Diagnostics.Process.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Diagnostics.StackTrace.dll
@ -70,6 +99,7 @@
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Globalization.Calendars.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Globalization.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Globalization.Extensions.dll
/home/class_student/.nuget/packages/system.identitymodel.tokens.jwt/6.35.0/lib/net6.0/System.IdentityModel.Tokens.Jwt.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.IO.Compression.Brotli.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.IO.Compression.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.IO.Compression.FileSystem.dll
@ -82,7 +112,7 @@
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.IO.FileSystem.Watcher.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.IO.IsolatedStorage.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.IO.MemoryMappedFiles.dll
/home/class_student/.nuget/packages/system.io.pipelines/8.0.0/lib/net8.0/System.IO.Pipelines.dll
/home/class_student/.nuget/packages/system.io.pipelines/9.0.1/lib/net8.0/System.IO.Pipelines.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.IO.Pipes.AccessControl.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.IO.Pipes.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.IO.UnmanagedMemoryStream.dll
@ -90,6 +120,7 @@
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Linq.Expressions.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Linq.Parallel.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Linq.Queryable.dll
/home/class_student/.nuget/packages/system.memory.data/1.0.2/lib/netstandard2.0/System.Memory.Data.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Memory.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.Http.dll
@ -150,6 +181,7 @@
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Security.Cryptography.Encoding.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Security.Cryptography.OpenSsl.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Security.Cryptography.Primitives.dll
/home/class_student/.nuget/packages/system.security.cryptography.protecteddata/6.0.0/lib/net6.0/System.Security.Cryptography.ProtectedData.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Security.Cryptography.X509Certificates.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Security.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Security.Principal.dll
@ -160,8 +192,8 @@
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Text.Encoding.CodePages.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Text.Encoding.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Text.Encoding.Extensions.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Text.Encodings.Web.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Text.Json.dll
/home/class_student/.nuget/packages/system.text.encodings.web/9.0.1/lib/net8.0/System.Text.Encodings.Web.dll
/home/class_student/.nuget/packages/system.text.json/9.0.1/lib/net8.0/System.Text.Json.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Text.RegularExpressions.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Threading.Channels.dll
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Threading.dll

Binary file not shown.

View File

@ -13,7 +13,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("Demka_Snova_1")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+eb9909704e777a27e1fecb9dd0bd78be53a34c31")]
[assembly: System.Reflection.AssemblyProductAttribute("Demka_Snova_1")]
[assembly: System.Reflection.AssemblyTitleAttribute("Demka_Snova_1")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]

View File

@ -1 +1 @@
cee3fbdbce00e97ad91702bd18c3cbcb09ac3c1b6ff0d9bed557ce272868f564
3813d61eab3435d17a2006f3552a671fa68f357f222a9c200aca02797526040e

View File

@ -1 +1 @@
436fd048d0a023f0b76e07e734ef19b8ce25d4a58d77b207da3888b418e169ff
d49fb66004877864e6b4198de99072120e9cbdddc2a2bce613f219e40123f053

View File

@ -65,3 +65,58 @@
/home/class_student/RiderProjects/Demka_Snova_1/obj/Debug/net8.0/Demka_Sn.F0FCE8F7.Up2Date
/home/class_student/RiderProjects/Demka_Snova_1/obj/Debug/net8.0/Demka_Snova_1.genruntimeconfig.cache
/home/class_student/RiderProjects/Demka_Snova_1/obj/Debug/net8.0/ref/Demka_Snova_1.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/Azure.Core.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/Azure.Identity.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/Microsoft.Data.SqlClient.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/Microsoft.Extensions.Caching.Abstractions.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/Microsoft.Extensions.Options.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/Microsoft.Extensions.Primitives.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/Microsoft.Identity.Client.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/Microsoft.IdentityModel.Abstractions.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/Microsoft.SqlServer.Server.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/Npgsql.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/System.ClientModel.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/System.Configuration.ConfigurationManager.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/System.Diagnostics.DiagnosticSource.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/System.Drawing.Common.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/System.Formats.Asn1.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/System.Memory.Data.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/System.Runtime.Caching.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/System.Security.Cryptography.ProtectedData.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/System.Security.Permissions.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/System.Text.Encodings.Web.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/System.Text.Json.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/System.Windows.Extensions.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll
/home/class_student/RiderProjects/Demka_Snova_1/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll

Binary file not shown.

View File

@ -1 +1 @@
91ee60dbdccec9b9eaba9c0f434a31472b10b59ca1a4dc3f293839afc4c01b67
755afd964cb8c52990e3259e3d9cfbdabdece442311edba3b3d904a80234fa53

Binary file not shown.