public ResultCode SetServiceInstanceMap(string serviceType, ServiceInstanceMapValue serviceInstanceMap)
        {
            SetServiceInstanceMapResponse setServiceInstanceMapResponse = ((IFederatedServiceOnboarding)this).SetServiceInstanceMap(new SetServiceInstanceMapRequest
            {
                serviceType        = serviceType,
                serviceInstanceMap = serviceInstanceMap
            });

            return(setServiceInstanceMapResponse.SetServiceInstanceMapResult);
        }
Ejemplo n.º 2
0
 public GetServiceInstanceMapResponse(ServiceInstanceMapValue GetServiceInstanceMapResult)
 {
     this.GetServiceInstanceMapResult = GetServiceInstanceMapResult;
 }
 public Task <SetServiceInstanceMapResponse> SetServiceInstanceMapAsync(string serviceType, ServiceInstanceMapValue serviceInstanceMap)
 {
     return(((IFederatedServiceOnboarding)this).SetServiceInstanceMapAsync(new SetServiceInstanceMapRequest
     {
         serviceType = serviceType,
         serviceInstanceMap = serviceInstanceMap
     }));
 }
Ejemplo n.º 4
0
 public SetServiceInstanceMapRequest(string serviceType, ServiceInstanceMapValue serviceInstanceMap)
 {
     this.serviceType        = serviceType;
     this.serviceInstanceMap = serviceInstanceMap;
 }