From 8832fc72202e031bd232511867312fc871f2c3e7 Mon Sep 17 00:00:00 2001 From: Veljko Tosic Date: Mon, 9 Feb 2026 23:24:49 +0100 Subject: [PATCH] Auto complete mistake corrected --- .../Infrastructure/DI/PersistenceRegistrationExtensions.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dotnet/AipsCore/Infrastructure/DI/PersistenceRegistrationExtensions.cs b/dotnet/AipsCore/Infrastructure/DI/PersistenceRegistrationExtensions.cs index 1f0f8bd..5f1faac 100644 --- a/dotnet/AipsCore/Infrastructure/DI/PersistenceRegistrationExtensions.cs +++ b/dotnet/AipsCore/Infrastructure/DI/PersistenceRegistrationExtensions.cs @@ -8,6 +8,7 @@ using AipsCore.Infrastructure.Persistence.Db; using AipsCore.Infrastructure.Persistence.Shape; using AipsCore.Infrastructure.Persistence.User; using AipsCore.Infrastructure.Persistence.Whiteboard; +using AipsCore.Infrastructure.Persistence.WhiteboardMembership; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; @@ -29,7 +30,7 @@ public static class PersistenceRegistrationExtensions services.AddTransient(); services.AddTransient(); services.AddTransient(); - services.AddTransient(); + services.AddTransient(); services.AddTransient(); return services;