예제 #1
0
        public List <M_Canal> obtenerAnio(string id_planning)
        {
            ServicioGestionCampania.Ges_CampaniaServiceClient client = new ServicioGestionCampania.Ges_CampaniaServiceClient("BasicHttpBinding_IGes_CampaniaService");

            string dataJson;
            string request;

            request  = "{'a':'" + id_planning + "'}";
            dataJson = client.Listar_Anios_Planning(request);

            M_Canal_Response oM_Canal = HelperJson.Deserialize <M_Canal_Response>(dataJson);

            return(oM_Canal.listaCanales);
        }