Exemplo n.º 1
0
        public bool SupplierBrandExists(string brandname, int pstateid)
        {
            bool result;

            client = new SQSAdminServiceClient();
            client.Endpoint.Address = new System.ServiceModel.EndpointAddress(CommonVariables.WcfEndpoint);
            result = client.SQSAdmin_StudioM_CheckSupplierBrandExists(brandname, pstateid);
            client.Close();
            return(result);
        }