New: User Search and User-Contact UI and Service

This commit is contained in:
2026-02-11 10:57:03 +01:00
parent 51b8f1c916
commit f80e9d00ee
6 changed files with 259 additions and 1 deletions

View File

@@ -17,6 +17,10 @@ namespace SZUAbsolventenverein.Module.PremiumArea.Startup
{
services.AddScoped<IEngineerApplicationService, EngineerApplicationService>();
}
if (!services.Any(s => s.ServiceType == typeof(IUserContactService)))
{
services.AddScoped<IUserContactService, UserContactService>();
}
}
}
}