public void SendNotification(string RequestId, string ElementId, PIS.Ground.Maintenance.Notification.NotificationIdEnum NotificationId, string Parameter)
 {
     PIS.Ground.Maintenance.Notification.SendNotificationRequest inValue = new PIS.Ground.Maintenance.Notification.SendNotificationRequest();
     inValue.RequestId      = RequestId;
     inValue.ElementId      = ElementId;
     inValue.NotificationId = NotificationId;
     inValue.Parameter      = Parameter;
     PIS.Ground.Maintenance.Notification.SendNotificationResponse retVal = ((PIS.Ground.Maintenance.Notification.INotificationGroundService)(this)).SendNotification(inValue);
 }
 PIS.Ground.Maintenance.Notification.SendNotificationResponse PIS.Ground.Maintenance.Notification.INotificationGroundService.SendNotification(PIS.Ground.Maintenance.Notification.SendNotificationRequest request)
 {
     return(base.Channel.SendNotification(request));
 }