//Presencia Mayorista
        public List <M_PuntoDeVenta> consultaPDV_CodCampania_CodCadena(string idC, string idM)
        {
            ServicioGestionCampania.Ges_CampaniaServiceClient client = new ServicioGestionCampania.Ges_CampaniaServiceClient("BasicHttpBinding_IGes_CampaniaService");


            string dataJson;
            string request;

            request  = "{'a':'" + idC + "','b':'" + idM + "'}";
            dataJson = client.Listar_PuntoDeVenta_Por_CodCampania_CodNodeCommercial(request);


            M_PuntoDeVenta_Response oM_PuntoDeVenta_Response = HelperJson.Deserialize <M_PuntoDeVenta_Response>(dataJson);

            return(oM_PuntoDeVenta_Response.listaPDV);
        }