12345678910111213141516 |
-
- namespace OASystem.API.OAMethodLib.APNs
- {
- public static class APNsLib
- {
- private static readonly IAPNsService _APNsService = AutofacIocManager.Instance.GetService<IAPNsService>();
- public static bool pushMsg(string apnsTopic, string deviceToken, NotificationType type, string title, string subtitle, string body)
- {
- _APNsService.PushNotification(apnsTopic, deviceToken, type, title, subtitle, body);
- return true;
- }
- }
- }
|