Beispiel #1
0
        public List <M_Mercaderista> consulta(string idC, string idS)
        {
            ServicioGestionCampania.Ges_CampaniaServiceClient client = new ServicioGestionCampania.Ges_CampaniaServiceClient("BasicHttpBinding_IGes_CampaniaService");
            string dataJson;
            string request;

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

            M_Mercaderista_Response oM_Mercaderista_Response = HelperJson.Deserialize <M_Mercaderista_Response>(dataJson);

            return(oM_Mercaderista_Response.listaMercaderista);
        }