public WeChatWeAppNotificationPublishProvider(
     IServiceProvider serviceProvider,
     ISubscribeMessager subscribeMessager,
     IOptions <AbpWeChatWeAppNotificationOptions> options)
     : base(serviceProvider)
 {
     Options           = options.Value;
     SubscribeMessager = subscribeMessager;
 }
Exemplo n.º 2
0
 public WeChatWeAppNotificationPublishProvider(
     IServiceProvider serviceProvider,
     IWeChatWeAppNotificationSender notificationSender,
     IOptions <AbpWeChatWeAppNotificationOptions> options)
     : base(serviceProvider)
 {
     Options            = options.Value;
     NotificationSender = notificationSender;
 }