Esempio n. 1
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));
        }
Esempio n. 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);
        }
Esempio n. 3
0
 System.Threading.Tasks.Task <SendStandaloneNotificationECResponse> INotificationAgencyExternalEC.SendStandaloneNotificationECAsync(SendStandaloneNotificationECRequest request)
 {
     return(base.Channel.SendStandaloneNotificationECAsync(request));
 }
Esempio n. 4
0
 SendStandaloneNotificationECResponse INotificationAgencyExternalEC.SendStandaloneNotificationEC(SendStandaloneNotificationECRequest request)
 {
     return(base.Channel.SendStandaloneNotificationEC(request));
 }