Ejemplo n.º 1
0
        public List <M_Reporte> consulta(string id)
        {
            ServicioGestionCampania.Ges_CampaniaServiceClient client = new ServicioGestionCampania.Ges_CampaniaServiceClient("BasicHttpBinding_IGes_CampaniaService");



            string dataJson;
            string request;

            request  = "{'a':'" + id + "'}";
            dataJson = client.Listar_Reporte_Por_CodCampania(request);

            M_Reporte_Response oM_Reporte = HelperJson.Deserialize <M_Reporte_Response>(dataJson);

            return(oM_Reporte.listaReportes);
        }