diff --git a/data/RemoteData/RemoteDataBase/DAO/User.cs b/data/RemoteData/RemoteDataBase/DAO/User.cs index 5c042d2..ea297e0 100644 --- a/data/RemoteData/RemoteDataBase/DAO/User.cs +++ b/data/RemoteData/RemoteDataBase/DAO/User.cs @@ -4,7 +4,7 @@ namespace Demo.Data.RemoteData.RemoteDataBase.DAO { public class UserDAO { - public string FIO { get; set; } + public string FIO { get; set; } public Guid Guid {get; set; } public int GroupID {get; set;} public GroupDAO Group {get; set; } diff --git a/data/Repository/IPresenceRepository.cs b/data/Repository/IPresenceRepository.cs index bce6080..0354543 100644 --- a/data/Repository/IPresenceRepository.cs +++ b/data/Repository/IPresenceRepository.cs @@ -5,6 +5,7 @@ namespace Demo.Data.Repository public interface IPresenceRepository { List GetAllPresences(); + bool DeletePresence(); void IsAttedance(int firstLesson, int lastLesson, DateOnly date, Guid UserGuid); List GeneratePresence(List presenceLocalEntities); } diff --git a/data/Repository/IUserRepository.cs b/data/Repository/IUserRepository.cs index 16629e7..52c514c 100644 --- a/data/Repository/IUserRepository.cs +++ b/data/Repository/IUserRepository.cs @@ -7,6 +7,7 @@ namespace Demo.Data.Repository List GetAllUser(); UserLocalEntity? GetUserByGuid(Guid guid); List GetUsersByGroupID(int groupID); + public UserLocalEntity? CreateUser(string FIO, string GroupName); bool RemoveUserByGuid(Guid guid); UserLocalEntity? UpdateUser(UserLocalEntity updatedUser); } diff --git a/data/Repository/PresenceRepositoryImpl.cs b/data/Repository/PresenceRepositoryImpl.cs index 2549fca..588ed53 100644 --- a/data/Repository/PresenceRepositoryImpl.cs +++ b/data/Repository/PresenceRepositoryImpl.cs @@ -19,6 +19,13 @@ namespace Demo.Data.Repository return _remoteDatabaseContext.PresenceDaos.Select(x => new PresenceLocalEntity{UserGuid = x.UserGuid, Date = x.Date, LessonNumber = x.LessonNumber, IsAttedance = x.IsAttedance}).ToList(); } + public bool DeletePresence(){ + var allRecords = _remoteDatabaseContext.PresenceDaos.ToList(); + _remoteDatabaseContext.PresenceDaos.RemoveRange(allRecords); + _remoteDatabaseContext.SaveChanges(); + return true; + } + public List GeneratePresence(List presenceLocalEntities) { var presences = presenceLocalEntities.Select(x => new PresenceDAO diff --git a/data/Repository/UserRepositorylmpl.cs b/data/Repository/UserRepositorylmpl.cs index af195e3..1112390 100644 --- a/data/Repository/UserRepositorylmpl.cs +++ b/data/Repository/UserRepositorylmpl.cs @@ -1,6 +1,7 @@ using Demo.Domain.Models; using Demo.Data.LocalData; using Demo.Data.RemoteData.RemoteDataBase; +using Demo.Data.RemoteData.RemoteDataBase.DAO; namespace Demo.Data.Repository { @@ -38,6 +39,14 @@ namespace Demo.Data.Repository .ToList(); } + public UserLocalEntity? CreateUser(string FIO, string GroupName){ + var groupDAO = _remoteDatabaseContext.Groups.FirstOrDefault(x => x.Name == GroupName); + UserDAO userDAO = new UserDAO{FIO = FIO, Guid = Guid.NewGuid(), GroupID = groupDAO.ID}; + var result = _remoteDatabaseContext.Users.Add(userDAO); + _remoteDatabaseContext.SaveChanges(); + return new UserLocalEntity{FIO = FIO, Guid = Guid.NewGuid(), GroupID = groupDAO.ID}; + } + public bool RemoveUserByGuid(Guid guid){ var userDAO = _remoteDatabaseContext.Users.FirstOrDefault(x => x.Guid == guid); _remoteDatabaseContext.Users.Remove(userDAO); diff --git a/data/bin/Debug/net8.0/data.dll b/data/bin/Debug/net8.0/data.dll index b70551a..1882934 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 f13d8db..3817c5a 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 6498719..a79849d 100644 --- a/data/obj/Debug/net8.0/data.AssemblyInfo.cs +++ b/data/obj/Debug/net8.0/data.AssemblyInfo.cs @@ -13,10 +13,10 @@ 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+9a1a4a676f43477d6c758020bf8a6f3c550c7d1f")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+ab663018abacf01e070b5ad828bf9b4512e0c4d7")] [assembly: System.Reflection.AssemblyProductAttribute("data")] [assembly: System.Reflection.AssemblyTitleAttribute("data")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] -// Создано классом WriteCodeFragment MSBuild. +// Generated by the MSBuild WriteCodeFragment class. diff --git a/data/obj/Debug/net8.0/data.AssemblyInfoInputs.cache b/data/obj/Debug/net8.0/data.AssemblyInfoInputs.cache index 5acd4b9..c7fcf59 100644 --- a/data/obj/Debug/net8.0/data.AssemblyInfoInputs.cache +++ b/data/obj/Debug/net8.0/data.AssemblyInfoInputs.cache @@ -1 +1 @@ -5ba87ffa7bb75ecaaebd58cb228572decf22f2fcbdf786cdba357d38098903ad +cd43bf0997982c5c306bd1cf1db3c12e77ec46315653277fe2d342bd04c4db32 diff --git a/data/obj/Debug/net8.0/data.dll b/data/obj/Debug/net8.0/data.dll index b70551a..1882934 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 f13d8db..3817c5a 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 525495e..ec15dcd 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 525495e..ec15dcd 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/Models/Group.cs b/domain/Models/Group.cs index ef15cfd..8d92c4d 100644 --- a/domain/Models/Group.cs +++ b/domain/Models/Group.cs @@ -10,4 +10,21 @@ namespace Demo.Domain.Models return new Group{ID = Convert.ToInt32(words[0]), Name = words[1]}; } } + + public class GroupCon{ + public required int ID{get; set; } + public required string Name{get; set; } + public List Users { get; set; } = new List(); + } + + public class GroupWithUsers + { + public required string GroupName { get; set; } + public List Users { get; set; } + } + + public class DeleteGroupsRequest + { + public List GroupIDs { get; set; } + } } \ No newline at end of file diff --git a/domain/Models/Presence.cs b/domain/Models/Presence.cs index 8fddb96..a9f874f 100644 --- a/domain/Models/Presence.cs +++ b/domain/Models/Presence.cs @@ -8,4 +8,12 @@ namespace Demo.Domain.Models public required int LessonNumber { get; set; } } + + public class PresencePost + { + public required int firstLesson {get; set; } + public required int lastLesson {get; set; } + public required int groupID {get; set; } + public required DateOnly date {get; set; } + } } \ No newline at end of file diff --git a/domain/Models/User.cs b/domain/Models/User.cs index d1f6626..dbc22ad 100644 --- a/domain/Models/User.cs +++ b/domain/Models/User.cs @@ -35,4 +35,15 @@ namespace Demo.Domain.Models } } } + + public class UserRequest + { + public required string FIO{get; set; } + public required Group Group{get; set; } + } + + public class DeleteUsersRequest + { + public List UsersGuid { get; set; } + } } \ No newline at end of file diff --git a/domain/UseCase/GroupUseCase.cs b/domain/UseCase/GroupUseCase.cs index e6aca77..ddc1d5e 100644 --- a/domain/UseCase/GroupUseCase.cs +++ b/domain/UseCase/GroupUseCase.cs @@ -23,6 +23,21 @@ namespace Demo.Domain.UseCase return new Group{ID = groupID, Name = groupLocalEntity.Name}; } + public List GetAllGroupsWithUsers(){ + var groups = _repositoryGroupImpl.GetAllGroup().Select(it => new GroupCon { ID = it.ID, Name = it.Name }).ToList(); + var users = _repositoryUserImpl.GetAllUser().Select(it => new User{FIO = it.FIO, Guid = it.Guid, Group = new Group{ID = it.GroupID, Name = _repositoryGroupImpl.GetGroupById(it.GroupID).Name}}).ToList(); + foreach (var group in groups) + { + foreach (var user in users) + { + if (user.Group.ID == group.ID){ + group.Users.Add(user); + } + } + } + return groups; + } + public bool CreateGroup(string Name){ _repositoryGroupImpl.CreateGroup(Name); return true; diff --git a/domain/UseCase/IGroupUseCase.cs b/domain/UseCase/IGroupUseCase.cs index c6d2d49..26f28ed 100644 --- a/domain/UseCase/IGroupUseCase.cs +++ b/domain/UseCase/IGroupUseCase.cs @@ -5,6 +5,7 @@ namespace Demo.Domain.UseCase public interface IGroupUseCase { List GetAllGroups(); + List GetAllGroupsWithUsers(); bool RemoveGroupByID(int groupID); Group UpdateGroup(Group group); Group GetGroupById(int groupID); diff --git a/domain/UseCase/IPresenceUseCase.cs b/domain/UseCase/IPresenceUseCase.cs index 8a1d588..bedcbbf 100644 --- a/domain/UseCase/IPresenceUseCase.cs +++ b/domain/UseCase/IPresenceUseCase.cs @@ -9,6 +9,7 @@ namespace Demo.Domain.UseCase List GetPresenceByUser(Guid userGuid); List GetFalsePresenceByUser(Guid userGuid); List GetFalsePresenceByGroup(int groupID); + bool DeletePresence(); bool IsAttedance(int firstLesson, int lastLesson, DateOnly date, Guid UserGuid); bool GeneratePresence(int firstLesson, int lastLesson, int groupID, DateOnly date); bool GeneratePresenceWeek(int firstLesson, int lastLesson, int groupID, DateOnly date); diff --git a/domain/UseCase/IUserUseCase.cs b/domain/UseCase/IUserUseCase.cs index 96a00b1..bf456cf 100644 --- a/domain/UseCase/IUserUseCase.cs +++ b/domain/UseCase/IUserUseCase.cs @@ -5,6 +5,7 @@ namespace Demo.Domain.UseCase public interface IUserUseCase { List GetAllUsers(); + bool CreateUser(User user); bool RemoveUserByGuid(Guid userGuid); User UpdateUser(User user); User GetUserByGuid(Guid userGuid); diff --git a/domain/UseCase/PresenceUseCase.cs b/domain/UseCase/PresenceUseCase.cs index 7170fd6..fe09424 100644 --- a/domain/UseCase/PresenceUseCase.cs +++ b/domain/UseCase/PresenceUseCase.cs @@ -130,6 +130,10 @@ namespace Demo.Domain.UseCase return presenceByGroup; } + public bool DeletePresence(){ + return _repositoryPresenceImpl.DeletePresence(); + } + public bool IsAttedance(int firstLesson, int lastLesson, DateOnly date, Guid UserGuid){ _repositoryPresenceImpl.IsAttedance(firstLesson, lastLesson, date, UserGuid); return true; diff --git a/domain/UseCase/UserUseCase.cs b/domain/UseCase/UserUseCase.cs index 2c675f9..2b0579f 100644 --- a/domain/UseCase/UserUseCase.cs +++ b/domain/UseCase/UserUseCase.cs @@ -61,6 +61,11 @@ namespace Demo.Domain.UseCase return users; } + public bool CreateUser(User user){ + _repositoryUserImpl.CreateUser(user.FIO, user.Group.Name); + return true; + } + public bool RemoveUserByGuid(Guid userGuid) { return _repositoryUserImpl.RemoveUserByGuid(userGuid); } diff --git a/domain/bin/Debug/net8.0/data.dll b/domain/bin/Debug/net8.0/data.dll index b70551a..1882934 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 f13d8db..3817c5a 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 d686cb1..71e193b 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 4323a8e..6f96f51 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 12e394b..1903d52 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+9a1a4a676f43477d6c758020bf8a6f3c550c7d1f")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+ab663018abacf01e070b5ad828bf9b4512e0c4d7")] [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 62453c6..b72421f 100644 --- a/domain/obj/Debug/net8.0/domain.AssemblyInfoInputs.cache +++ b/domain/obj/Debug/net8.0/domain.AssemblyInfoInputs.cache @@ -1 +1 @@ -ea5525c196e6a42ab8fb1a310ecfb776da42845ff47bc24abc92536ef0465e16 +53e90c69f33df0bd1e7077d29424b1847917acfabb5c61f6d56d7e56ca00c889 diff --git a/domain/obj/Debug/net8.0/domain.csproj.AssemblyReference.cache b/domain/obj/Debug/net8.0/domain.csproj.AssemblyReference.cache index 64e4d67..80dcfa8 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 d686cb1..71e193b 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 4323a8e..6f96f51 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 5e8e25f..9526817 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 5e8e25f..9526817 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.cs b/presence_api/Controllers/AdminController.cs index 3a91a9e..a912946 100644 --- a/presence_api/Controllers/AdminController.cs +++ b/presence_api/Controllers/AdminController.cs @@ -1,16 +1,113 @@ +using Demo.Domain.Models; +using Demo.Domain.UseCase; using Microsoft.AspNetCore.Mvc; +using Npgsql.TypeMapping; namespace presence_api.Controllers; [ApiController] [Route("api/[controller]")] public class AdminController: ControllerBase{ - + private readonly GroupUseCase _groupUseCase; + private readonly UserUseCase _userUseCase; + private readonly PresenceUseCase _presenceUseCase; + public AdminController(GroupUseCase groupUseCase, UserUseCase userUseCase, PresenceUseCase presenceUseCase){ + _groupUseCase = groupUseCase; + _userUseCase = userUseCase; + _presenceUseCase = presenceUseCase; + } //post + [HttpPost] + public ActionResult CreateGroup([FromBody] GroupWithUsers request) + { + if (request == null || string.IsNullOrEmpty(request.GroupName)) + { + return BadRequest("Invalid request"); + } + + bool isCreated = _groupUseCase.CreateGroup(request.GroupName); + + + foreach(var user in request.Users){ + var usert = new User{FIO = user.FIO, Guid = Guid.NewGuid(), Group = user.Group}; + _userUseCase.CreateUser(usert); + } + return Ok(isCreated); + } //delete + [HttpDelete("user")] + public ActionResult DeleteUser(Guid userGuid){ + if (userGuid == Guid.Empty){ + return BadRequest("Invalid request"); + } + bool isDeleted = _userUseCase.RemoveUserByGuid(userGuid); + if (isDeleted == false){ + return NotFound("User not found"); + } + return Ok(true); + } + + [HttpDelete("users")] + public ActionResult DeleteUsers([FromBody] DeleteUsersRequest request){ + if (request == null){ + return BadRequest("Invalid request"); + } + foreach (Guid userGuid in request.UsersGuid) + { + bool isDeleted = _userUseCase.RemoveUserByGuid(userGuid); + if (isDeleted == false){ + return NotFound("User not found"); + } + } + return Ok(true); + } + + [HttpDelete("group")] + public ActionResult DeleteGroup(int GroupID){ + bool isDeleted = _groupUseCase.RemoveGroupByID(GroupID); + if (isDeleted == false){ + return NotFound("Group not found"); + } + return Ok(true); + } + + [HttpDelete("groups")] + public ActionResult DeleteGroups([FromBody] DeleteGroupsRequest request){ + if (request == null){ + return BadRequest("Invalid request"); + } + foreach (int GroupID in request.GroupIDs) + { + bool isDeleted = _groupUseCase.RemoveGroupByID(GroupID); + if (isDeleted == false){ + return NotFound("Group not found"); + } + } + return Ok(true); + } + + [HttpDelete("presence")] + public ActionResult DeletePresence(){ + return Ok(_presenceUseCase.DeletePresence()); + } //get - + [HttpGet] + public ActionResult> getGroupsWithUsers() + { + return Ok(_groupUseCase.GetAllGroupsWithUsers()); + } + + [HttpGet("user/{userGuid}")] + public ActionResult GetUserByGuid(Guid userGuid) + { + var user = _userUseCase.GetUserByGuid(userGuid); + if (user != null){ + return Ok(user); + } else{ + return NotFound("User not found"); + } + } } \ No newline at end of file diff --git a/presence_api/Controllers/PresenceController.cs b/presence_api/Controllers/PresenceController.cs new file mode 100644 index 0000000..4baa55e --- /dev/null +++ b/presence_api/Controllers/PresenceController.cs @@ -0,0 +1,34 @@ +using Demo.Domain.Models; +using Demo.Domain.UseCase; +using Microsoft.AspNetCore.Mvc; + +namespace presence_api.Controllers; +[ApiController] +[Route("api/[controller]")] + +public class PresenceController: ControllerBase{ + private readonly PresenceUseCase _presenceUseCase; + + public PresenceController(PresenceUseCase presenceUseCase) + { + _presenceUseCase = presenceUseCase; + } + + //get + + //post + + [HttpPost("generate")] + public ActionResult GeneratePresence([FromBody] PresencePost request) + { + if (request == null){ + return BadRequest("buba"); + } + var isGenerated = _presenceUseCase.GeneratePresence(request.firstLesson, request.lastLesson, request.groupID, request.date); + return Ok(isGenerated); + } + + //delete + + //update +} \ No newline at end of file diff --git a/presence_api/ServiceExtensions/ServiceExtensions.cs b/presence_api/ServiceExtensions/ServiceExtensions.cs index fd61767..4d5b6b1 100644 --- a/presence_api/ServiceExtensions/ServiceExtensions.cs +++ b/presence_api/ServiceExtensions/ServiceExtensions.cs @@ -1,14 +1,3 @@ -// using Demo.Data.Repository; -// using Demo.Domain.UseCase; - -// public static class ServiceExtencions{ -// public static void ConfigurateGroup(this IServiceCollection services) -// { -// services.AddScoped() -// .AddScoped(); -// } -// } - using Demo.Data.Repository; using Demo.Domain.UseCase; @@ -18,6 +7,9 @@ public static class ServiceExtencions { services.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 b70551a..1882934 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 f13d8db..3817c5a 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 d686cb1..71e193b 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 4323a8e..6f96f51 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 0490ebd..5099247 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 626c85a..86607fa 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 bb9b7d9..486b9b1 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+9a1a4a676f43477d6c758020bf8a6f3c550c7d1f")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+ab663018abacf01e070b5ad828bf9b4512e0c4d7")] [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 3a1ec2f..9139103 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 @@ -10827b4c81f3bbe2ddad3a0cffacb58a86473e79298f58d43c550df7310e052e +e4838467133c57bdd2c94f8db0c1fd2159f424bc63563685da366c57ec64e107 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 45d6207..139ccbc 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.csproj.CoreCompileInputs.cache b/presence_api/obj/Debug/net8.0/presence_api.csproj.CoreCompileInputs.cache index 12a4266..73c0b04 100644 --- a/presence_api/obj/Debug/net8.0/presence_api.csproj.CoreCompileInputs.cache +++ b/presence_api/obj/Debug/net8.0/presence_api.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -7fd8191932eb3651c4c77b0c932930207f4dca09c1cb88c8509828f17de96157 +ea8075ffbb357bda1813b80b328a20c60762bee510180efc2da28da284041540 diff --git a/presence_api/obj/Debug/net8.0/presence_api.dll b/presence_api/obj/Debug/net8.0/presence_api.dll index 0490ebd..5099247 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 626c85a..86607fa 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 6733b69..f0b4bc5 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 6733b69..f0b4bc5 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