Ejemplo n.º 1
0
        public async Task <PushNotificationModel> PreparePushNotificationListModel()
        {
            var pushNotifications = await _pushNotificationService.GetAllPushNotificationsAsync();

            var model = new PushNotificationModel
            {
                PushNotifications = pushNotifications
            };

            return(model);
        }