namespace OASystem.API.OAMethodLib.APNs { public static class APNsLib { private static readonly IAPNsService _APNsService = AutofacIocManager.Instance.GetService(); 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; } } }