1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-03 00:52:49 -05:00

PM-10600: Unit Tests fix to NotificationHubPushRegistrationService after merge conflict

This commit is contained in:
Maciej Zieniuk
2024-11-20 11:09:59 +00:00
parent ccf685f29d
commit 0aa38bed5a
2 changed files with 0 additions and 15 deletions

View File

@ -11,18 +11,15 @@ public class NotificationHubPushRegistrationService : IPushRegistrationService
{
private readonly IInstallationDeviceRepository _installationDeviceRepository;
private readonly INotificationHubPool _notificationHubPool;
private readonly IServiceProvider _serviceProvider;
private readonly IOrganizationUserRepository _organizationUserRepository;
public NotificationHubPushRegistrationService(
IInstallationDeviceRepository installationDeviceRepository,
INotificationHubPool notificationHubPool,
IServiceProvider serviceProvider,
IOrganizationUserRepository organizationUserRepository)
{
_installationDeviceRepository = installationDeviceRepository;
_notificationHubPool = notificationHubPool;
_serviceProvider = serviceProvider;
_organizationUserRepository = organizationUserRepository;
}