#nullable enable using Bit.Core.NotificationCenter.Authorization; using Bit.Core.NotificationCenter.Commands; using Bit.Core.NotificationCenter.Commands.Interfaces; using Bit.Core.NotificationCenter.Queries; using Bit.Core.NotificationCenter.Queries.Interfaces; using Microsoft.AspNetCore.Authorization; using Microsoft.Extensions.DependencyInjection; namespace Bit.Core.NotificationCenter; public static class NotificationCenterServiceCollectionExtensions { public static void AddNotificationCenterServices(this IServiceCollection services) { // Authorization Handlers services.AddScoped(); services.AddScoped(); // Commands services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); // Queries services.AddScoped(); services.AddScoped(); } }