From 8eb8801c41643d2d2bb77927a054241a2e295c7a Mon Sep 17 00:00:00 2001 From: TekH Date: Fri, 25 Jul 2025 17:07:40 +0200 Subject: [PATCH] feat(DI): add method to inject IProfileObjRepository --- src/WorkFlow.Infrastructure/DependencyInjection.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/WorkFlow.Infrastructure/DependencyInjection.cs b/src/WorkFlow.Infrastructure/DependencyInjection.cs index 34d5350..decc53e 100644 --- a/src/WorkFlow.Infrastructure/DependencyInjection.cs +++ b/src/WorkFlow.Infrastructure/DependencyInjection.cs @@ -13,6 +13,7 @@ public static class DependencyInjection services.TryAddScoped(); services.TryAddScoped(); services.TryAddScoped(); + services.TryAddScoped(); services.TryAddScoped(); return services;