Exemplo n.º 1
0
 public TopupCardRequest(Web.GateCardServices.AuthenSoapHeader AuthenSoapHeader, string serviceName, string cardSerial, string cardPin)
 {
     this.AuthenSoapHeader = AuthenSoapHeader;
     this.serviceName      = serviceName;
     this.cardSerial       = cardSerial;
     this.cardPin          = cardPin;
 }
Exemplo n.º 2
0
 public Web.GateCardServices.CardResponse TopupCard(Web.GateCardServices.AuthenSoapHeader AuthenSoapHeader, string serviceName, string cardSerial, string cardPin)
 {
     Web.GateCardServices.TopupCardRequest inValue = new Web.GateCardServices.TopupCardRequest();
     inValue.AuthenSoapHeader = AuthenSoapHeader;
     inValue.serviceName      = serviceName;
     inValue.cardSerial       = cardSerial;
     inValue.cardPin          = cardPin;
     Web.GateCardServices.TopupCardResponse retVal = ((Web.GateCardServices.WsGateCardSoap)(this)).TopupCard(inValue);
     return(retVal.TopupCardResult);
 }