Exemple #1
0
 /// <summary>
 /// Gets all directions that mathces the givenn search criteria.
 /// </summary>
 /// <param name="calle">The street.</param>
 /// <param name="altura">The street altitude.</param>
 /// <param name="esquina">The street cross.</param>
 /// <param name="partido">The departmentof the street.</param>
 /// <param name="provincia">The province of the street.</param>
 /// <returns></returns>
 public static IList <DireccionVO> GetDireccion(string calle, int altura, string esquina, string partido, int provincia)
 {
     return(Geocoder.GetDireccion(calle, altura, esquina, partido, provincia));
 }