public static NotificationEvent loadNotificationEvent(long businessEventID, string businessApplicationID, string notificationFrom, string notificationDestination, string notificationMessageSubject, string notificationMessageContent, NotificationChannel notificationChannelInfo)
		{
			return new NotificationEvent
			{
				BusinessEventID = businessEventID,
				BusinessApplicationID = businessApplicationID,
				NotificationFrom = notificationFrom,
				NotificationDestination = notificationDestination,
				NotificationMessageSubject = notificationMessageSubject,
				NotificationMessageContent = notificationMessageContent,
				NotificationChannelInfo = notificationChannelInfo
			};
		}
 public static NotificationEvent loadNotificationEvent(long businessEventID, string businessApplicationID, string notificationFrom, string notificationDestination, string notificationMessageSubject, string notificationMessageContent, NotificationChannel notificationChannelInfo)
 {
     return(new NotificationEvent
     {
         BusinessEventID = businessEventID,
         BusinessApplicationID = businessApplicationID,
         NotificationFrom = notificationFrom,
         NotificationDestination = notificationDestination,
         NotificationMessageSubject = notificationMessageSubject,
         NotificationMessageContent = notificationMessageContent,
         NotificationChannelInfo = notificationChannelInfo
     });
 }