public NotificationPushBVG NotificationPush(NotificationPushBVG notificationPush)
        {
            NotificationPushBVG      result = notificationPush;
            NotificationPushValidate nv     = new NotificationPushValidate();

            if (nv.ValidateNotificationPush(notificationPush))
            {
                result = bvgClient.NotificationPush(notificationPush);
            }

            return(result);
        }