Exemplo n.º 1
0
 public bool GetLicense(System.Guid licenseId, out string companyName, out string departmentName, out long maxEvents, out int maxSeats, out System.DateTime expiryUTC)
 {
     TasksUnitTests.StackHashWebService.GetLicenseRequest inValue = new TasksUnitTests.StackHashWebService.GetLicenseRequest();
     inValue.Body           = new TasksUnitTests.StackHashWebService.GetLicenseRequestBody();
     inValue.Body.licenseId = licenseId;
     TasksUnitTests.StackHashWebService.GetLicenseResponse retVal = ((TasksUnitTests.StackHashWebService.StackHashServiceSoap)(this)).GetLicense(inValue);
     companyName    = retVal.Body.companyName;
     departmentName = retVal.Body.departmentName;
     maxEvents      = retVal.Body.maxEvents;
     maxSeats       = retVal.Body.maxSeats;
     expiryUTC      = retVal.Body.expiryUTC;
     return(retVal.Body.GetLicenseResult);
 }
Exemplo n.º 2
0
 TasksUnitTests.StackHashWebService.GetLicenseResponse TasksUnitTests.StackHashWebService.StackHashServiceSoap.GetLicense(TasksUnitTests.StackHashWebService.GetLicenseRequest request)
 {
     return(base.Channel.GetLicense(request));
 }