Пример #1
0
        public List <M_SubCategoria> consulta(string id_subcategoria)
        {
            ServicioGestionCampania.Ges_CampaniaServiceClient client = new ServicioGestionCampania.Ges_CampaniaServiceClient("BasicHttpBinding_IGes_CampaniaService");
            string dataJson;
            string request;

            request  = "{'a':'" + id_subcategoria + "'}";
            dataJson = client.ListarSubCategoria_Por_CodCategoria(request);

            M_SubCategoria_Response oM_Categoria_Response = HelperJson.Deserialize <M_SubCategoria_Response>(dataJson);

            return(oM_Categoria_Response.listasubCategoria);
        }