Пример #1
0
        public List <M_Sub_Reporte> consulta(string idreporte, string idcampania, string idcanal)
        {
            ServicioGestionCampania.Ges_CampaniaServiceClient client = new ServicioGestionCampania.Ges_CampaniaServiceClient("BasicHttpBinding_IGes_CampaniaService");

            string dataJson;
            string request;

            request  = "{'a':'" + idreporte + "','b':'" + idcampania + "','c':'" + idcanal + "'}";
            dataJson = client.Listar_Sub_Reportes(request);
            M_Sub_Reporte_Response oM_Sub_Reporte = HelperJson.Deserialize <M_Sub_Reporte_Response>(dataJson);

            return(oM_Sub_Reporte.listaSubReportes);
        }