Initial commit

This commit is contained in:
Adam Gaiswinkler
2026-01-02 22:52:11 +01:00
commit 5dfa690432
37 changed files with 1611 additions and 0 deletions

View File

@ -0,0 +1,18 @@
using Microsoft.Extensions.DependencyInjection;
using System.Linq;
using Oqtane.Services;
using SZUAbsolventenverein.Module.HallOfFame.Services;
namespace SZUAbsolventenverein.Module.HallOfFame.Startup
{
public class ClientStartup : IClientStartup
{
public void ConfigureServices(IServiceCollection services)
{
if (!services.Any(s => s.ServiceType == typeof(IHallOfFameService)))
{
services.AddScoped<IHallOfFameService, HallOfFameService>();
}
}
}
}