Пример #1
0
        public List <M_Campana> consulta(string id, string idcompania)
        {
            ServicioGestionCampania.Ges_CampaniaServiceClient client = new ServicioGestionCampania.Ges_CampaniaServiceClient("BasicHttpBinding_IGes_CampaniaService");



            string dataJson;
            string request;

            request  = "{'b':'" + idcompania + "','a':'" + id + "'}";
            dataJson = client.Listar_Campania_Por_CodCanal_y_CodCompania(request);


            M_Campana_Response oM_Campana_Response = HelperJson.Deserialize <M_Campana_Response>(dataJson);

            return(oM_Campana_Response.listaCampanias);
        }