예제 #1
0
        public List <M_PuntoDeVenta> consulta(string CodCampania, string CodOficina, string CodZona)
        {
            ServicioGestionCampania.Ges_CampaniaServiceClient client = new ServicioGestionCampania.Ges_CampaniaServiceClient("BasicHttpBinding_IGes_CampaniaService");
            string dataJson;
            string request;

            request  = "{'a':'" + CodCampania + "','b':'" + CodOficina + "','c':'" + CodZona + "'}";
            dataJson = client.Listar_PuntoDeVenta_Por_CodCampania_CodOficina_CodCadena(request);

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

            return(oM_PuntoDeVenta_Response.listaPDV);
        }