예제 #1
0
        public bool QuestionExists(int panswertypeid, string questiontext)
        {
            bool result;

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