1
0
mirror of https://github.com/bitwarden/server synced 2025-12-19 09:43:25 +00:00

rename to push notification service

This commit is contained in:
Kyle Spearrin
2017-05-26 09:44:54 -04:00
parent c95d39f563
commit 887fe4fc05
7 changed files with 14 additions and 14 deletions

View File

@@ -24,7 +24,7 @@ namespace Bit.Core.Services
private readonly IGroupRepository _groupRepository;
private readonly IDataProtector _dataProtector;
private readonly IMailService _mailService;
private readonly IPushService _pushService;
private readonly IPushNotificationService _pushService;
public OrganizationService(
IOrganizationRepository organizationRepository,
@@ -34,7 +34,7 @@ namespace Bit.Core.Services
IGroupRepository groupRepository,
IDataProtectionProvider dataProtectionProvider,
IMailService mailService,
IPushService pushService)
IPushNotificationService pushService)
{
_organizationRepository = organizationRepository;
_organizationUserRepository = organizationUserRepository;