public NN_Representatividad_And_Cluster_Response obtener_Representatividad_And_Cluster(string ubigeo, string idPlanning, string idReportsPlanning)
        {
            MapService.Ges_MapsServiceClient mapServices = new MapService.Ges_MapsServiceClient("BasicHttpBinding_IGes_MapsService");

            NN_Representatividad_And_Cluster_Request oRequest = new NN_Representatividad_And_Cluster_Request();

            oRequest.ubigeo            = ubigeo;
            oRequest.idPlanning        = idPlanning;
            oRequest.idReportsPlanning = idReportsPlanning;

            string request;
            string dataJson;

            request  = Lucky.CFG.JavaMovil.HelperJson.Serialize <NN_Representatividad_And_Cluster_Request>(oRequest);
            dataJson = mapServices.Obtener_Representatividad_And_Cluster_NN(request);

            NN_Representatividad_And_Cluster_Response response = Lucky.CFG.JavaMovil.HelperJson.Deserialize <NN_Representatividad_And_Cluster_Response>(dataJson);

            return(response);
        }