Exemplo n.º 1
0
        /// <summary>
        /// Binds a entity.
        /// </summary>
        private void BindEntidad()
        {
            if (Entidad.Id <= 0)
            {
                return;
            }

            txtTipo.Text      = Entidad.TipoDocumento;
            txtApellido.Text  = Entidad.Apellido;
            txtNombre.Text    = Entidad.Nombre;
            txtDocumento.Text = Entidad.NroDocumento;
            txtCuil.Text      = Entidad.Cuil;
            DireccionSearch1.SetDireccion(Entidad.Direccion);
        }
Exemplo n.º 2
0
 public void BorrarDireccion()
 {
     monitor.ClearLayer(LayerPoi);
     DireccionSearch1.SetDireccion(null);
 }
Exemplo n.º 3
0
 void MonitorClick(object sender, MonitorClickEventArgs e)
 {
     DireccionSearch1.FindByLatLon(e.Latitud, e.Longitud);
 }