Esempio n. 1
0
 public string AddGame(string name, string description, float price)
 {
     ServiceG2A.PK.AddGameRequest inValue = new ServiceG2A.PK.AddGameRequest();
     inValue.Body             = new ServiceG2A.PK.AddGameRequestBody();
     inValue.Body.name        = name;
     inValue.Body.description = description;
     inValue.Body.price       = price;
     ServiceG2A.PK.AddGameResponse retVal = ((ServiceG2A.PK.WebServicePKSoap)(this)).AddGame(inValue);
     return(retVal.Body.AddGameResult);
 }
Esempio n. 2
0
 ServiceG2A.PK.AddGameResponse ServiceG2A.PK.WebServicePKSoap.AddGame(ServiceG2A.PK.AddGameRequest request)
 {
     return(base.Channel.AddGame(request));
 }