public NotificationSenderService(INotificationHubManager notificationHubManager, INotificationRepository notificationRepository)
 {
     _notificationHubManager  = notificationHubManager;
     _notificationRespository = notificationRepository;
 }
Esempio n. 2
0
 /// <summary>
 /// コンストラクタ
 /// </summary>
 /// <param name="authHelper">authHelper</param>
 public SubscribeManager(IAuthHelper authHelper)
 {
     this.authHelper             = authHelper;
     this.notificationHubManager = NotificationHubManager.GetInstance();
 }
 public NotificationHub(INotificationHubManager manager, INotificationProviderService notificationProviderService)
 {
     _manager = manager;
     _notificationProviderService = notificationProviderService;
 }
 public void SetUp()
 {
     this.authHelper             = new Mock <IAuthHelper>();
     this.notificationHubManager = NotificationHubManager.GetInstance();
 }
 public void SetUp()
 {
     this.notificationHubManager = NotificationHubManager.GetInstance();
     this.notificationHub        = new Mock <INotificationHub>();
 }