Exemplo n.º 1
0
 private void Page_Loaded(object sender, RoutedEventArgs e)
 {
     //Clases.C_Locacion loc = new Clases.C_Locacion();
     //cmbLocacion.ItemsSource = loc.listarLocaciones();
     //cmbLocacion.DisplayMemberPath = "codigo";
     //cmbLocacion.SelectedValuePath = "idlocacion";
     Clases.C_TipoDocumento tdoc = new Clases.C_TipoDocumento();
     cmbtipo.ItemsSource       = tdoc.listarDocumento();
     cmbtipo.DisplayMemberPath = "descripcion";
     cmbtipo.SelectedValuePath = "id_td";
     Clases.confirmador confi = new Clases.confirmador();
     dtgrdconfirmador.ItemsSource = confi.listarConfirmador();
 }
Exemplo n.º 2
0
        private async void tlGuardar_Click(object sender, RoutedEventArgs e)
        {
            Clases.confirmador newCon = new Clases.confirmador();
            newCon.id_td    = (int)cmbtipo.SelectedValue;
            newCon.doc_iden = txtCedul.Text;
            newCon.nombre   = txtNombreN.Text;
            newCon.apellido = txtApellido.Text;
            newCon.correo   = txtcorreo.Text;
            newCon.telefono = txtThabitacion.Text;
            //newCon.codigo = txtcodigo.Text;
            //newTele.id_locacion =(int) cmbLocacion.SelectedValue;
            if (conselect == false)
            {
                if (newCon.NuevoConfirmador() == 1)
                {
                    await p.ShowMessageAsync("Información", "Se ha guardado correctamente", MessageDialogStyle.Affirmative);

                    tlCancelar_Click(sender, e);
                    flNuevo.IsOpen = false;
                    Page_Loaded(sender, e);
                }
                else
                {
                    await p.ShowMessageAsync("Error", "Error al guardar el usuario", MessageDialogStyle.Affirmative);
                }
            }
            else
            {
                newCon.id_confirmador = id;
                if (newCon.editarConfirmador() == 1)
                {
                    await p.ShowMessageAsync("Información", "Se han actualizado correctamente los datos", MessageDialogStyle.Affirmative);

                    tlCancelar_Click(sender, e);
                    flNuevo.IsOpen = false;
                    Page_Loaded(sender, e);
                }
                else
                {
                    await p.ShowMessageAsync("Error", "Error al actualizar los datos", MessageDialogStyle.Affirmative);
                }
            }
        }
Exemplo n.º 3
0
        private void dtgrdtelemarketing_MouseDoubleClick(object sender, MouseButtonEventArgs e)
        {
            object conf = dtgrdconfirmador.SelectedValue;

            if (conf != null)
            {
                tlCancelar.IsEnabled = false;
                Clases.confirmador conSelected = (Clases.confirmador)conf;
                id                    = conSelected.id_confirmador;
                flNuevo.Header        = "Datos del confirmador " + conSelected.nombre + " " + conSelected.apellido;
                flNuevo.IsOpen        = true;
                cmbtipo.SelectedValue = conSelected.id_td;
                txtCedul.Text         = conSelected.doc_iden;
                txtNombreN.Text       = conSelected.nombre;
                txtApellido.Text      = conSelected.apellido;
                txtThabitacion.Text   = conSelected.telefono;
                txtcorreo.Text        = conSelected.correo;
                //cmbLocacion.SelectedValue = teleSelected.id_locacion;
                conselect = true;
            }
        }