Exemple #1
0
 public string ExecuteService(string clientHexCode, string subdomainName, int apiID, string hdLogID, object[] inputParams, out string errorMsg)
 {
     HiDoctor.HDCoreDataService.ExecuteServiceRequest inValue = new HiDoctor.HDCoreDataService.ExecuteServiceRequest();
     inValue.clientHexCode = clientHexCode;
     inValue.subdomainName = subdomainName;
     inValue.apiID         = apiID;
     inValue.hdLogID       = hdLogID;
     inValue.inputParams   = inputParams;
     HiDoctor.HDCoreDataService.ExecuteServiceResponse retVal = ((HiDoctor.HDCoreDataService.IHDCoreDataService)(this)).ExecuteService(inValue);
     errorMsg = retVal.errorMsg;
     return(retVal.ExecuteServiceResult);
 }
Exemple #2
0
 HiDoctor.HDCoreDataService.ExecuteServiceResponse HiDoctor.HDCoreDataService.IHDCoreDataService.ExecuteService(HiDoctor.HDCoreDataService.ExecuteServiceRequest request)
 {
     return(base.Channel.ExecuteService(request));
 }