Mass rename to align planned codename

This commit is contained in:
TheXamlGuy
2024-05-27 16:08:18 +01:00
parent 2c066097f6
commit 3631d666f5
98 changed files with 550 additions and 432 deletions
+2 -2
View File
@@ -4,7 +4,7 @@ using Toolkit.Foundation;
namespace Bitvault;
public class UpdateItemHander(IDbContextFactory<ContainerDbContext> dbContextFactory) :
public class UpdateItemHander(IDbContextFactory<LockerContext> dbContextFactory) :
IHandler<UpdateEventArgs<(Guid, ItemConfiguration)>, bool>
{
public async Task<bool> Handle(UpdateEventArgs<(Guid, ItemConfiguration)> args,
@@ -15,7 +15,7 @@ public class UpdateItemHander(IDbContextFactory<ContainerDbContext> dbContextFac
try
{
string? name = configuration.Name;
using ContainerDbContext context = dbContextFactory.CreateDbContext();
using LockerContext context = dbContextFactory.CreateDbContext();
ItemEntry? result = null;
await Task.Run(async () =>