Ejemplo n.º 1
0
 public PushKahlaMessageService(
     KahlaDbContext dbContext,
     PushMessageService pushMessageService)
 {
     _dbContext          = dbContext;
     _pushMessageService = pushMessageService;
 }
Ejemplo n.º 2
0
 public PushKahlaMessageService(
     KahlaDbContext dbContext,
     PushMessageService pushMessageService,
     AppsContainer appsContainer,
     ChannelService channelService)
 {
     _dbContext          = dbContext;
     _pushMessageService = pushMessageService;
     _appsContainer      = appsContainer;
     _channelService     = channelService;
 }
Ejemplo n.º 3
0
 public KahlaPushService(
     PushMessageService stargatePushService,
     AppsContainer appsContainer,
     ChannelService channelService,
     ThirdPartyPushService thirdPartyPushService)
 {
     _stargatePushService   = stargatePushService;
     _appsContainer         = appsContainer;
     _channelService        = channelService;
     _thirdPartyPushService = thirdPartyPushService;
 }
Ejemplo n.º 4
0
 public StargatePushService(
     ChannelService channelService,
     AppsContainer appsContainer,
     PushMessageService pushMessageService,
     KahlaDbContext kahlaDbContext)
 {
     _channelService     = channelService;
     _appsContainer      = appsContainer;
     _pushMessageService = pushMessageService;
     _kahlaDbContext     = kahlaDbContext;
 }
Ejemplo n.º 5
0
 public DevicesController(
     KahlaDbContext dbContext,
     ThirdPartyPushService thirdPartyPushService,
     UserManager<KahlaUser> userManager,
     PushMessageService stargatePushService,
     AppsContainer appsContainer)
 {
     _dbContext = dbContext;
     _thirdPartyPushService = thirdPartyPushService;
     _userManager = userManager;
     _stargatePushService = stargatePushService;
     _appsContainer = appsContainer;
 }
 public ChatPushService(
     ApplicationDbContext dbContext,
     PushMessageService stargatePushService,
     AppsContainer appsContainer,
     ChannelService channelService,
     ThirdPartyPushService thirdPartyPushService)
 {
     _dbContext             = dbContext;
     _stargatePushService   = stargatePushService;
     _appsContainer         = appsContainer;
     _channelService        = channelService;
     _thirdPartyPushService = thirdPartyPushService;
 }
Ejemplo n.º 7
0
 public DebugMessageSender(PushMessageService messageService)
 {
     _messageService = messageService;
 }
Ejemplo n.º 8
0
 /// <summary>
 /// 推波服務建構式
 /// </summary>
 public NotificationService()
 {
     pushMessageService = new PushMessageService();
     InitializeComponent();
 }