Пример #1
0
        public bool RetailClusterExists(int stateid, string clustername)
        {
            bool result;

            client = new SQSAdminServiceClient();
            client.Endpoint.Address = new System.ServiceModel.EndpointAddress(CommonVariables.WcfEndpoint);
            result = client.SQSAdmin_StudioM_IsRetailClusterExists(stateid, clustername);
            client.Close();
            return(result);
        }