public EventoNotificationManager(IPushNotifier notifier, IUserProfileClient userProfileClient) { this.notifier = notifier; this.userProfileClient = userProfileClient; }
public PushNotificationTaskQueue(IPushNotifier notifier) { this._notifier = notifier; }
public DefaultNotificationManager() { this.notifier = new GCMNotifier(); }
public VoteController(IPushNotifier pushNotifier) { _pushNotifier = pushNotifier ?? throw new ArgumentNullException(nameof(pushNotifier)); }
public NotificationTaskManager(NotificationContainer UserData) : base(UserData) { this.notifier = new GCMNotifier(); }
public static bool NotifyPush(this IPushNotifier obj) { var sender = new SendEmail(); return(sender.Send(obj)); }
public PushRealTimeNotifier(UserManager userManager, IRepository <Person, Guid> personRepository, IRepository <NotificationTemplate, Guid> templateRepository, IRepository <NotificationMessage, Guid> notificationMessageRepository, IUnitOfWorkManager uowManager, IRepository <Notification, Guid> notificationRepository, IPushNotifier pushNotifier) : base(userManager, personRepository, templateRepository, notificationMessageRepository, uowManager, notificationRepository) { _pushNotifier = pushNotifier; }
public MobileLocationProvider(IPushNotifier pushNotifier) { _pushNotifier = pushNotifier; }