public void Send(ApexnetPushNotification notification)
 {
     this.notificatore.SendPush(
         notification.AuthKey,
         notification.AppKey,
         notification.Message,
         notification.UserName,
         notification.Sound,
         notification.CustomField1,
         notification.CustomField2,
         notification.BadgeCount);
 }
Example #2
0
 public void Send(ApexnetPushNotification notification)
 {
     this.notificatore.SendPush(
         notification.AuthKey,
         notification.AppKey,
         notification.Message,
         notification.UserName,
         notification.Sound,
         notification.CustomField1,
         notification.CustomField2,
         notification.BadgeCount);
 }
 //// ReSharper disable MemberCanBePrivate.Global
 public static void _Run(ApexnetPushNotification notification)
 {
     var sender = new ApexnetPushNotificationSender();
     sender.Send(notification);
 }
 public ApexnetPushNotificationJob(ApexnetPushNotification pushNotification)
 {
     this.pushNotification = pushNotification;
 }