diff --git a/console_ui/obj/Debug/net8.0/console_ui.AssemblyInfo.cs b/console_ui/obj/Debug/net8.0/console_ui.AssemblyInfo.cs
index 368e634..5d1ba83 100644
--- a/console_ui/obj/Debug/net8.0/console_ui.AssemblyInfo.cs
+++ b/console_ui/obj/Debug/net8.0/console_ui.AssemblyInfo.cs
@@ -13,7 +13,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("console_ui")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5b98b0036758c0bfbfd050b258dbaf603f2669f2")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d03600cac4088e592e3a84368946b3e313cc8b5")]
[assembly: System.Reflection.AssemblyProductAttribute("console_ui")]
[assembly: System.Reflection.AssemblyTitleAttribute("console_ui")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
diff --git a/console_ui/obj/Debug/net8.0/console_ui.AssemblyInfoInputs.cache b/console_ui/obj/Debug/net8.0/console_ui.AssemblyInfoInputs.cache
index 66815dc..b842807 100644
--- a/console_ui/obj/Debug/net8.0/console_ui.AssemblyInfoInputs.cache
+++ b/console_ui/obj/Debug/net8.0/console_ui.AssemblyInfoInputs.cache
@@ -1 +1 @@
-b49b12c1eb209457e0c1d0e3edaa7ba0ff70b6f92d0e9721fc4a71fd5a16073d
+6ad1ce5ea61b754a82503202c636b3fa3b325dace303f66d8b4958f60658bbb7
diff --git a/console_ui/obj/Debug/net8.0/console_ui.csproj.AssemblyReference.cache b/console_ui/obj/Debug/net8.0/console_ui.csproj.AssemblyReference.cache
index f770548..8bfafaa 100644
Binary files a/console_ui/obj/Debug/net8.0/console_ui.csproj.AssemblyReference.cache and b/console_ui/obj/Debug/net8.0/console_ui.csproj.AssemblyReference.cache differ
diff --git a/data/Migrations/20241114213726_InitialCreate.Designer.cs b/data/Migrations/20241119121248_InitialCreate.Designer.cs
similarity index 94%
rename from data/Migrations/20241114213726_InitialCreate.Designer.cs
rename to data/Migrations/20241119121248_InitialCreate.Designer.cs
index 8e22398..40780ff 100644
--- a/data/Migrations/20241114213726_InitialCreate.Designer.cs
+++ b/data/Migrations/20241119121248_InitialCreate.Designer.cs
@@ -12,7 +12,7 @@ using presence.data.RemoteData.RemoteDataBase;
namespace data.Migrations
{
[DbContext(typeof(RemoteDataBaseContext))]
- [Migration("20241114213726_InitialCreate")]
+ [Migration("20241119121248_InitialCreate")]
partial class InitialCreate
{
///
@@ -62,9 +62,6 @@ namespace data.Migrations
b.Property("IsAttendence")
.HasColumnType("boolean");
- b.Property("UserGuid")
- .HasColumnType("uuid");
-
b.Property("UserId")
.HasColumnType("integer");
@@ -90,9 +87,6 @@ namespace data.Migrations
b.Property("GroupId")
.HasColumnType("integer");
- b.Property("UserGuid")
- .HasColumnType("uuid");
-
b.HasKey("UserId");
b.HasIndex("GroupId");
diff --git a/data/Migrations/20241114213726_InitialCreate.cs b/data/Migrations/20241119121248_InitialCreate.cs
similarity index 95%
rename from data/Migrations/20241114213726_InitialCreate.cs
rename to data/Migrations/20241119121248_InitialCreate.cs
index cc3a5bb..a4d1b23 100644
--- a/data/Migrations/20241114213726_InitialCreate.cs
+++ b/data/Migrations/20241119121248_InitialCreate.cs
@@ -32,7 +32,6 @@ namespace data.Migrations
UserId = table.Column(type: "integer", nullable: false)
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
FIO = table.Column(type: "text", nullable: false),
- UserGuid = table.Column(type: "uuid", nullable: false),
GroupId = table.Column(type: "integer", nullable: false)
},
constraints: table =>
@@ -55,7 +54,6 @@ namespace data.Migrations
Date = table.Column(type: "date", nullable: false),
ClassNumber = table.Column(type: "integer", nullable: false),
IsAttendence = table.Column(type: "boolean", nullable: false),
- UserGuid = table.Column(type: "uuid", nullable: false),
UserId = table.Column(type: "integer", nullable: false),
GroupId = table.Column(type: "integer", nullable: false)
},
diff --git a/data/Migrations/RemoteDataBaseContextModelSnapshot.cs b/data/Migrations/RemoteDataBaseContextModelSnapshot.cs
index 57f7bff..6c8028a 100644
--- a/data/Migrations/RemoteDataBaseContextModelSnapshot.cs
+++ b/data/Migrations/RemoteDataBaseContextModelSnapshot.cs
@@ -59,9 +59,6 @@ namespace data.Migrations
b.Property("IsAttendence")
.HasColumnType("boolean");
- b.Property("UserGuid")
- .HasColumnType("uuid");
-
b.Property("UserId")
.HasColumnType("integer");
@@ -87,9 +84,6 @@ namespace data.Migrations
b.Property("GroupId")
.HasColumnType("integer");
- b.Property("UserGuid")
- .HasColumnType("uuid");
-
b.HasKey("UserId");
b.HasIndex("GroupId");
diff --git a/data/RemoteData/RemoteDataBase/DAO/Presence.cs b/data/RemoteData/RemoteDataBase/DAO/Presence.cs
index 83ea9e2..50edef2 100755
--- a/data/RemoteData/RemoteDataBase/DAO/Presence.cs
+++ b/data/RemoteData/RemoteDataBase/DAO/Presence.cs
@@ -11,7 +11,6 @@ namespace presence.data.RemoteData.RemoteDataBase.DAO
public DateOnly Date {get; set;}
public int ClassNumber {get; set;}
public bool IsAttendence {get; set;} = true;
- public Guid UserGuid {get; set;}
public int UserId {get; set;}
public UserDao User {get; set;}
public int GroupId {get; set;}
diff --git a/data/Repository/AdminRepositoryImp.cs b/data/Repository/AdminRepositoryImp.cs
index ff3e09e..f4ff465 100644
--- a/data/Repository/AdminRepositoryImp.cs
+++ b/data/Repository/AdminRepositoryImp.cs
@@ -21,13 +21,14 @@ namespace data.Repository
public bool AddStudents(GroupDao group, List students)
{
_remoteDataBaseContext.Groups.Add(group);
+ _remoteDataBaseContext.SaveChanges();
foreach (string student in students)
{
var user = new UserDao
{
FIO = student,
GroupId = group.Id,
- Group = _remoteDataBaseContext.Groups.Where(x => x.Id == group.Id).FirstOrDefault()
+ Group = _remoteDataBaseContext.Groups.Where(x => x.Id == group.Id).FirstOrDefault(),
};
_remoteDataBaseContext.Users.Add(user);
}
@@ -35,21 +36,6 @@ namespace data.Repository
return true;
}
- public void DeleteUserFromGroup(int userId, int groupId)
- {
-
- }
-
- public void DeleteGroup(int groupId)
- {
-
- }
-
- public void ClearPresence()
- {
-
- }
-
public IEnumerable GetAllGroupsWithStudents()
{
return _remoteDataBaseContext.Groups.Select(x => new GroupDao
diff --git a/data/bin/Debug/net8.0/data.dll b/data/bin/Debug/net8.0/data.dll
index 94f31c4..848fb7c 100644
Binary files a/data/bin/Debug/net8.0/data.dll and b/data/bin/Debug/net8.0/data.dll differ
diff --git a/data/bin/Debug/net8.0/data.pdb b/data/bin/Debug/net8.0/data.pdb
index 05d83e3..cabdb88 100644
Binary files a/data/bin/Debug/net8.0/data.pdb and b/data/bin/Debug/net8.0/data.pdb differ
diff --git a/data/obj/Debug/net8.0/data.AssemblyInfo.cs b/data/obj/Debug/net8.0/data.AssemblyInfo.cs
index 50b513c..4a9ce91 100644
--- a/data/obj/Debug/net8.0/data.AssemblyInfo.cs
+++ b/data/obj/Debug/net8.0/data.AssemblyInfo.cs
@@ -13,7 +13,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("data")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+8ef372052b678424c7aa0641185bc80a86633fd3")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d03600cac4088e592e3a84368946b3e313cc8b5")]
[assembly: System.Reflection.AssemblyProductAttribute("data")]
[assembly: System.Reflection.AssemblyTitleAttribute("data")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
diff --git a/data/obj/Debug/net8.0/data.AssemblyInfoInputs.cache b/data/obj/Debug/net8.0/data.AssemblyInfoInputs.cache
index fdf83a9..c459e54 100644
--- a/data/obj/Debug/net8.0/data.AssemblyInfoInputs.cache
+++ b/data/obj/Debug/net8.0/data.AssemblyInfoInputs.cache
@@ -1 +1 @@
-24a878335b95e62669ffd03f1fc8ae7961ca2aeb2b77b5a0cc8714c45febe0a6
+731b1d5c69b5572fabec0fbf95abad126efb155dcf8719a9eebf3ca961eb9311
diff --git a/data/obj/Debug/net8.0/data.csproj.CoreCompileInputs.cache b/data/obj/Debug/net8.0/data.csproj.CoreCompileInputs.cache
index 48c98a7..f1ad052 100644
--- a/data/obj/Debug/net8.0/data.csproj.CoreCompileInputs.cache
+++ b/data/obj/Debug/net8.0/data.csproj.CoreCompileInputs.cache
@@ -1 +1 @@
-8eca5ecb6d779046df6e1bf2012302fb656c15233d139f1b56f144cbd823ea78
+a21506b9097c7cce01fc449026dd9bd6129fa7118e8947174bed36605e7fb801
diff --git a/data/obj/Debug/net8.0/data.dll b/data/obj/Debug/net8.0/data.dll
index 94f31c4..848fb7c 100644
Binary files a/data/obj/Debug/net8.0/data.dll and b/data/obj/Debug/net8.0/data.dll differ
diff --git a/data/obj/Debug/net8.0/data.pdb b/data/obj/Debug/net8.0/data.pdb
index 05d83e3..cabdb88 100644
Binary files a/data/obj/Debug/net8.0/data.pdb and b/data/obj/Debug/net8.0/data.pdb differ
diff --git a/data/obj/Debug/net8.0/ref/data.dll b/data/obj/Debug/net8.0/ref/data.dll
index dc52d48..fa7864a 100644
Binary files a/data/obj/Debug/net8.0/ref/data.dll and b/data/obj/Debug/net8.0/ref/data.dll differ
diff --git a/data/obj/Debug/net8.0/refint/data.dll b/data/obj/Debug/net8.0/refint/data.dll
index dc52d48..fa7864a 100644
Binary files a/data/obj/Debug/net8.0/refint/data.dll and b/data/obj/Debug/net8.0/refint/data.dll differ
diff --git a/domain/UseCase/AdminUseCase.cs b/domain/UseCase/AdminUseCase.cs
index 2f64164..e94bd8d 100644
--- a/domain/UseCase/AdminUseCase.cs
+++ b/domain/UseCase/AdminUseCase.cs
@@ -37,6 +37,10 @@ namespace domain.UseCase
public UserResponse GetStudentInfo(int userId)
{
+
+ var studentInfo = _adminRepository.GetStudentInfo(userId);
+ if (studentInfo == null) return null;
+
UserResponse user= new UserResponse{
Id = userId,
FIO = _adminRepository.GetStudentInfo(userId).FIO,
diff --git a/domain/bin/Debug/net8.0/data.dll b/domain/bin/Debug/net8.0/data.dll
index 94f31c4..848fb7c 100644
Binary files a/domain/bin/Debug/net8.0/data.dll and b/domain/bin/Debug/net8.0/data.dll differ
diff --git a/domain/bin/Debug/net8.0/data.pdb b/domain/bin/Debug/net8.0/data.pdb
index 05d83e3..cabdb88 100644
Binary files a/domain/bin/Debug/net8.0/data.pdb and b/domain/bin/Debug/net8.0/data.pdb differ
diff --git a/domain/bin/Debug/net8.0/domain.dll b/domain/bin/Debug/net8.0/domain.dll
index 95e19c0..3e7f5e9 100644
Binary files a/domain/bin/Debug/net8.0/domain.dll and b/domain/bin/Debug/net8.0/domain.dll differ
diff --git a/domain/bin/Debug/net8.0/domain.pdb b/domain/bin/Debug/net8.0/domain.pdb
index 86894cc..ef82c28 100644
Binary files a/domain/bin/Debug/net8.0/domain.pdb and b/domain/bin/Debug/net8.0/domain.pdb differ
diff --git a/domain/obj/Debug/net8.0/domain.AssemblyInfo.cs b/domain/obj/Debug/net8.0/domain.AssemblyInfo.cs
index a2a2001..2d27595 100644
--- a/domain/obj/Debug/net8.0/domain.AssemblyInfo.cs
+++ b/domain/obj/Debug/net8.0/domain.AssemblyInfo.cs
@@ -13,7 +13,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("domain")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+8ef372052b678424c7aa0641185bc80a86633fd3")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d03600cac4088e592e3a84368946b3e313cc8b5")]
[assembly: System.Reflection.AssemblyProductAttribute("domain")]
[assembly: System.Reflection.AssemblyTitleAttribute("domain")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
diff --git a/domain/obj/Debug/net8.0/domain.AssemblyInfoInputs.cache b/domain/obj/Debug/net8.0/domain.AssemblyInfoInputs.cache
index cf69bfc..5a0d4c5 100644
--- a/domain/obj/Debug/net8.0/domain.AssemblyInfoInputs.cache
+++ b/domain/obj/Debug/net8.0/domain.AssemblyInfoInputs.cache
@@ -1 +1 @@
-2be1454f305b332ed3dfd12d83b5bd32519cfeb34730e08d6bc1129099d63430
+0245376b560f5cb2e4a470a5144535facc90ed6189da3440a9addc1c5ff980f7
diff --git a/domain/obj/Debug/net8.0/domain.csproj.AssemblyReference.cache b/domain/obj/Debug/net8.0/domain.csproj.AssemblyReference.cache
index ae03ea1..3a24a8a 100644
Binary files a/domain/obj/Debug/net8.0/domain.csproj.AssemblyReference.cache and b/domain/obj/Debug/net8.0/domain.csproj.AssemblyReference.cache differ
diff --git a/domain/obj/Debug/net8.0/domain.dll b/domain/obj/Debug/net8.0/domain.dll
index 95e19c0..3e7f5e9 100644
Binary files a/domain/obj/Debug/net8.0/domain.dll and b/domain/obj/Debug/net8.0/domain.dll differ
diff --git a/domain/obj/Debug/net8.0/domain.pdb b/domain/obj/Debug/net8.0/domain.pdb
index 86894cc..ef82c28 100644
Binary files a/domain/obj/Debug/net8.0/domain.pdb and b/domain/obj/Debug/net8.0/domain.pdb differ
diff --git a/domain/obj/Debug/net8.0/ref/domain.dll b/domain/obj/Debug/net8.0/ref/domain.dll
index 946a010..2726696 100644
Binary files a/domain/obj/Debug/net8.0/ref/domain.dll and b/domain/obj/Debug/net8.0/ref/domain.dll differ
diff --git a/domain/obj/Debug/net8.0/refint/domain.dll b/domain/obj/Debug/net8.0/refint/domain.dll
index 946a010..2726696 100644
Binary files a/domain/obj/Debug/net8.0/refint/domain.dll and b/domain/obj/Debug/net8.0/refint/domain.dll differ
diff --git a/presence_api/Controllers/AdminController/AdminController.cs b/presence_api/Controllers/AdminController/AdminController.cs
index 5778002..a8ad1ea 100644
--- a/presence_api/Controllers/AdminController/AdminController.cs
+++ b/presence_api/Controllers/AdminController/AdminController.cs
@@ -52,8 +52,19 @@ public class AdminController: ControllerBase
}
[HttpGet("~/GetStudentInfo")]
- public ActionResult GetStudentInfo([FromQuery] int userId)
+ public ActionResult GetStudentInfo([FromQuery] int userId)
{
- return _adminUseCase.GetStudentInfo(userId);
+ if (userId <= 0)
+ {
+ return BadRequest("Некорректный идентификатор пользователя.");
+ }
+
+ var studentInfo = _adminUseCase.GetStudentInfo(userId);
+ if (studentInfo == null)
+ {
+ return NotFound("Студент не найден.");
+ }
+
+ return Ok(studentInfo);
}
}
\ No newline at end of file
diff --git a/presence_api/ServiceExtensions/ServiceExtensions.cs b/presence_api/ServiceExtensions/ServiceExtensions.cs
index f2c28d4..51f139e 100644
--- a/presence_api/ServiceExtensions/ServiceExtensions.cs
+++ b/presence_api/ServiceExtensions/ServiceExtensions.cs
@@ -2,6 +2,8 @@ using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
+using data.Repository;
+using domain.UseCase;
using presence.data.Repository;
using presence.domain.UseCase;
@@ -36,9 +38,11 @@ namespace presence_api.ServiceExtensions
.AddScoped()
.AddScoped()
.AddScoped()
+ .AddScoped()
.AddScoped()
.AddScoped()
- .AddScoped();
+ .AddScoped()
+ .AddScoped();
}
}
}
\ No newline at end of file
diff --git a/presence_api/bin/Debug/net8.0/data.dll b/presence_api/bin/Debug/net8.0/data.dll
index c4eecbb..848fb7c 100644
Binary files a/presence_api/bin/Debug/net8.0/data.dll and b/presence_api/bin/Debug/net8.0/data.dll differ
diff --git a/presence_api/bin/Debug/net8.0/data.pdb b/presence_api/bin/Debug/net8.0/data.pdb
index 742780e..cabdb88 100644
Binary files a/presence_api/bin/Debug/net8.0/data.pdb and b/presence_api/bin/Debug/net8.0/data.pdb differ
diff --git a/presence_api/bin/Debug/net8.0/domain.dll b/presence_api/bin/Debug/net8.0/domain.dll
index 6e166b5..3e7f5e9 100644
Binary files a/presence_api/bin/Debug/net8.0/domain.dll and b/presence_api/bin/Debug/net8.0/domain.dll differ
diff --git a/presence_api/bin/Debug/net8.0/domain.pdb b/presence_api/bin/Debug/net8.0/domain.pdb
index 7a75a67..ef82c28 100644
Binary files a/presence_api/bin/Debug/net8.0/domain.pdb and b/presence_api/bin/Debug/net8.0/domain.pdb differ
diff --git a/presence_api/bin/Debug/net8.0/presence_api.dll b/presence_api/bin/Debug/net8.0/presence_api.dll
index cfbbc3f..6344f52 100644
Binary files a/presence_api/bin/Debug/net8.0/presence_api.dll and b/presence_api/bin/Debug/net8.0/presence_api.dll differ
diff --git a/presence_api/bin/Debug/net8.0/presence_api.pdb b/presence_api/bin/Debug/net8.0/presence_api.pdb
index ebe312e..79878e8 100644
Binary files a/presence_api/bin/Debug/net8.0/presence_api.pdb and b/presence_api/bin/Debug/net8.0/presence_api.pdb differ
diff --git a/presence_api/obj/Debug/net8.0/presence_api.AssemblyInfo.cs b/presence_api/obj/Debug/net8.0/presence_api.AssemblyInfo.cs
index 1584179..fab1f01 100644
--- a/presence_api/obj/Debug/net8.0/presence_api.AssemblyInfo.cs
+++ b/presence_api/obj/Debug/net8.0/presence_api.AssemblyInfo.cs
@@ -13,7 +13,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("presence_api")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+8ef372052b678424c7aa0641185bc80a86633fd3")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d03600cac4088e592e3a84368946b3e313cc8b5")]
[assembly: System.Reflection.AssemblyProductAttribute("presence_api")]
[assembly: System.Reflection.AssemblyTitleAttribute("presence_api")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
diff --git a/presence_api/obj/Debug/net8.0/presence_api.AssemblyInfoInputs.cache b/presence_api/obj/Debug/net8.0/presence_api.AssemblyInfoInputs.cache
index 49f6b36..b076df0 100644
--- a/presence_api/obj/Debug/net8.0/presence_api.AssemblyInfoInputs.cache
+++ b/presence_api/obj/Debug/net8.0/presence_api.AssemblyInfoInputs.cache
@@ -1 +1 @@
-d71e0c1c402bb5f7999f22a103739c4472d550306d274e226a12195f88ae957b
+798a76f8e4e88ed691b932584ec55b49cd4295dad39d90d41b25f766a324819e
diff --git a/presence_api/obj/Debug/net8.0/presence_api.csproj.AssemblyReference.cache b/presence_api/obj/Debug/net8.0/presence_api.csproj.AssemblyReference.cache
index 103b6a1..2b1f16a 100644
Binary files a/presence_api/obj/Debug/net8.0/presence_api.csproj.AssemblyReference.cache and b/presence_api/obj/Debug/net8.0/presence_api.csproj.AssemblyReference.cache differ
diff --git a/presence_api/obj/Debug/net8.0/presence_api.dll b/presence_api/obj/Debug/net8.0/presence_api.dll
index cfbbc3f..6344f52 100644
Binary files a/presence_api/obj/Debug/net8.0/presence_api.dll and b/presence_api/obj/Debug/net8.0/presence_api.dll differ
diff --git a/presence_api/obj/Debug/net8.0/presence_api.pdb b/presence_api/obj/Debug/net8.0/presence_api.pdb
index ebe312e..79878e8 100644
Binary files a/presence_api/obj/Debug/net8.0/presence_api.pdb and b/presence_api/obj/Debug/net8.0/presence_api.pdb differ
diff --git a/presence_api/obj/Debug/net8.0/ref/presence_api.dll b/presence_api/obj/Debug/net8.0/ref/presence_api.dll
index adaa265..61ec9a9 100644
Binary files a/presence_api/obj/Debug/net8.0/ref/presence_api.dll and b/presence_api/obj/Debug/net8.0/ref/presence_api.dll differ
diff --git a/presence_api/obj/Debug/net8.0/refint/presence_api.dll b/presence_api/obj/Debug/net8.0/refint/presence_api.dll
index adaa265..61ec9a9 100644
Binary files a/presence_api/obj/Debug/net8.0/refint/presence_api.dll and b/presence_api/obj/Debug/net8.0/refint/presence_api.dll differ
diff --git a/ui/obj/Debug/net8.0/ui.AssemblyInfo.cs b/ui/obj/Debug/net8.0/ui.AssemblyInfo.cs
index e86da84..b9bd0c2 100644
--- a/ui/obj/Debug/net8.0/ui.AssemblyInfo.cs
+++ b/ui/obj/Debug/net8.0/ui.AssemblyInfo.cs
@@ -13,7 +13,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("ui")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5b98b0036758c0bfbfd050b258dbaf603f2669f2")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d03600cac4088e592e3a84368946b3e313cc8b5")]
[assembly: System.Reflection.AssemblyProductAttribute("ui")]
[assembly: System.Reflection.AssemblyTitleAttribute("ui")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
diff --git a/ui/obj/Debug/net8.0/ui.AssemblyInfoInputs.cache b/ui/obj/Debug/net8.0/ui.AssemblyInfoInputs.cache
index 4a754e8..a182d8e 100644
--- a/ui/obj/Debug/net8.0/ui.AssemblyInfoInputs.cache
+++ b/ui/obj/Debug/net8.0/ui.AssemblyInfoInputs.cache
@@ -1 +1 @@
-aae41bb0bff218b6d819a8588d8a08693e0dd4ef657786bcb45f29aa7e6facd9
+d777f0bc903b8628182786e327f34a1218980e149c2424c39e1b85b062853bcd
diff --git a/ui/obj/Debug/net8.0/ui.csproj.AssemblyReference.cache b/ui/obj/Debug/net8.0/ui.csproj.AssemblyReference.cache
index 2b7d54f..a599e77 100644
Binary files a/ui/obj/Debug/net8.0/ui.csproj.AssemblyReference.cache and b/ui/obj/Debug/net8.0/ui.csproj.AssemblyReference.cache differ