void TestNotifA()
        {
            var client = new NotificationAgencyExternalECClient("ST01");
            var not    = new StandaloneNotification();

            not.LanguageID = 1033;
            var notlist = new StandaloneNotificationBEList();

            notlist.Add(not);
            client.SendStandaloneNotificationEC(SOA1User, SOA2Pass, notlist);
        }
Example #2
0
        public void SendStandaloneNotificationEC(string systemUserName, string systemPassword, StandaloneNotificationBEList standaloneNotifications)
        {
            SendStandaloneNotificationECRequest inValue = new SendStandaloneNotificationECRequest();

            inValue.Body = new SendStandaloneNotificationECRequestBody();
            inValue.Body.systemUserName          = systemUserName;
            inValue.Body.systemPassword          = systemPassword;
            inValue.Body.standaloneNotifications = standaloneNotifications;
            SendStandaloneNotificationECResponse retVal = ((INotificationAgencyExternalEC)(this)).SendStandaloneNotificationEC(inValue);
        }
Example #3
0
        public System.Threading.Tasks.Task <SendStandaloneNotificationECResponse> SendStandaloneNotificationECAsync(string systemUserName, string systemPassword, StandaloneNotificationBEList standaloneNotifications)
        {
            SendStandaloneNotificationECRequest inValue = new SendStandaloneNotificationECRequest();

            inValue.Body = new SendStandaloneNotificationECRequestBody();
            inValue.Body.systemUserName          = systemUserName;
            inValue.Body.systemPassword          = systemPassword;
            inValue.Body.standaloneNotifications = standaloneNotifications;
            return(((INotificationAgencyExternalEC)(this)).SendStandaloneNotificationECAsync(inValue));
        }
Example #4
0
 public SendStandaloneNotificationECRequestBody(string systemUserName, string systemPassword, StandaloneNotificationBEList standaloneNotifications)
 {
     this.systemUserName          = systemUserName;
     this.systemPassword          = systemPassword;
     this.standaloneNotifications = standaloneNotifications;
 }