Beispiel #1
0
    public int GetCountForPostalCode(string username, string password, string postalcode)
    {
        GetCountForPostalCodeRequest inValue = new GetCountForPostalCodeRequest();

        inValue.Body            = new GetCountForPostalCodeRequestBody();
        inValue.Body.username   = username;
        inValue.Body.password   = password;
        inValue.Body.postalcode = postalcode;
        GetCountForPostalCodeResponse retVal = ((IV2Soap)(this)).GetCountForPostalCode(inValue);

        return(retVal.Body.GetCountForPostalCodeResult);
    }
Beispiel #2
0
 GetCountForPostalCodeResponse IV2Soap.GetCountForPostalCode(GetCountForPostalCodeRequest request)
 {
     return(base.Channel.GetCountForPostalCode(request));
 }