Пример #1
0
        public List <M_PuntoDeVenta> ListarPDV_Por_CodCampania_Person_Node_FecIni_FecFin(string CodCampania, string CodPerson, string CodNode, string Fecha_Ini, string Fecha_Fin)
        {
            ServicioGestionCampania.Ges_CampaniaServiceClient client = new ServicioGestionCampania.Ges_CampaniaServiceClient("BasicHttpBinding_IGes_CampaniaService");
            string dataJson;
            string request;

            request  = "{'a':'" + CodCampania + "','b':'" + CodPerson + "','c':'" + CodNode + "','d':'" + Fecha_Ini + "','e':'" + Fecha_Fin + "'}";
            dataJson = client.Listar_PDV_Por_CodCampania_Person_Node_FecIni_FecFin(request);

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

            return(oM_PuntoDeVenta_Response.listaPDV);
        }