public void listar_fichas()
        {
            List<FichaTemporal> lista = new NFichaTemporal().N_Listar_FichaTemporal();
            this.grilla_listado.Rows.Clear();
            for (int i = 0; i < lista.Count; i++)
            {
                int reglon = this.grilla_listado.Rows.Add();
                this.grilla_listado.Rows[reglon].Cells["ID"].Value = lista[i].Id.ToString();
                this.grilla_listado.Rows[reglon].Cells["Tipo_Mascota"].Value = lista[i].Tipomascota.Descripcion.ToString();
                this.grilla_listado.Rows[reglon].Cells["Voluntario"].Value = lista[i].Voluntario.ToString();
                this.grilla_listado.Rows[reglon].Cells["Tamaño"].Value = lista[i].Tamano.ToString();
                this.grilla_listado.Rows[reglon].Cells["ID_Persona"].Value = lista[i].Persona.Id.ToString();
                this.grilla_listado.Rows[reglon].Cells["Nombre"].Value = lista[i].Persona.Nombre.ToString();
                this.grilla_listado.Rows[reglon].Cells["Apellidos"].Value = lista[i].Persona.Apellidos.ToString();
                this.grilla_listado.Rows[reglon].Cells["Dni"].Value = lista[i].Persona.Dni.ToString();
                this.grilla_listado.Rows[reglon].Cells["Direccion"].Value = lista[i].Persona.Direccion.ToString();
                this.grilla_listado.Rows[reglon].Cells["Sexo"].Value = lista[i].Persona.Sexo.ToString();
                this.grilla_listado.Rows[reglon].Cells["Edad"].Value = lista[i].Persona.Edad.ToString();
                this.grilla_listado.Rows[reglon].Cells["Email"].Value = lista[i].Persona.Email.ToString();
                this.grilla_listado.Rows[reglon].Cells["Facebook"].Value = lista[i].Persona.Facebook.ToString();
                this.grilla_listado.Rows[reglon].Cells["Rpm"].Value = lista[i].Persona.Rpm.ToString();
                if ((lista[i].Persona.Tel_mov == null) || (lista[i].Persona.Tel_mov == 0))
                {
                    this.grilla_listado.Rows[reglon].Cells["Movistar"].Value = "";

                }
                else
                {
                    this.grilla_listado.Rows[reglon].Cells["Movistar"].Value = lista[i].Persona.Tel_mov.ToString();

                }
                if ((lista[i].Persona.Tel_claro == null) || (lista[i].Persona.Tel_claro == 0))
                {
                    this.grilla_listado.Rows[reglon].Cells["Claro"].Value = "";

                }
                else
                {
                    this.grilla_listado.Rows[reglon].Cells["Claro"].Value = lista[i].Persona.Tel_claro.ToString();

                }
                this.grilla_listado.Rows[reglon].Cells["Nextel"].Value = lista[i].Persona.Tel_nex.ToString();
                if ((lista[i].Persona.Tel_casa == 0) || (lista[i].Persona.Tel_casa == null))
                {
                    this.grilla_listado.Rows[reglon].Cells["Telefono"].Value = "";

                }
                else
                {
                    this.grilla_listado.Rows[reglon].Cells["Telefono"].Value = lista[i].Persona.Tel_casa.ToString();

                }
                this.grilla_listado.Rows[reglon].Cells["Horario_disponible"].Value = lista[i].Persona.Hor_disp.ToString();
                this.grilla_listado.Rows[reglon].Cells["Estado"].Value = lista[i].Estado.ToString();
                this.grilla_listado.Rows[reglon].Cells["Observaciones"].Value = lista[i].Observaciones.ToString();

            }
        }
        private void btn_registrar_Click(object sender, EventArgs e)
        {
            Boolean band1 = false, band2 = false, band3 = false;
            String mensaje = "Por Favor Complete los campos obligatorios : \n";

            String nombre = "";
            String apellidos = "";
            String dni = "";
            String direccion = "";
            String sexo = "";
            String edad = "";
            int movistar = 0;
            int claro = 0;
            int telefono = 0;
            String nextel = "";
            String rpm = "";
            String email = "";
            String facebook = "";
            String horario = "";
            String observa = "";
            String estado = "";

            TipoMascota tipo = (TipoMascota)combo_tipoMascota.SelectedItem;
            Usuario voluntario = (Usuario)combo_voluntario.SelectedItem;
            String tamaño = combo_Tamaño.SelectedItem.ToString();

            if (!String.IsNullOrEmpty(text_nombre.Text))
            {
                nombre = text_nombre.Text;
            }
            else
            {
                mensaje = mensaje + "\n - Casilla de Nombre ";
                band1 = true;
            }

            if (!String.IsNullOrEmpty(text_apellido.Text))
            {
                apellidos = text_apellido.Text;
            }
            else
            {
                mensaje = mensaje + "\n - Casilla de Apellidos ";
                band2 = true;
            }
            if (!String.IsNullOrEmpty(text_dni.Text))
            {
                dni = text_dni.Text;
            }
            else
            {
                mensaje = mensaje + "\n - Casilla de Dni ";
                band3 = true;
            }
            if (!String.IsNullOrEmpty(text_direccion.Text))
            {
                direccion = text_direccion.Text;
            }

            if (radio_masculino.Checked == true)
            {
                sexo = "Masculino";
            }
            else
            {
                sexo = "Femenino";
            }
            if (radio_activo.Checked == true)
            {
                estado = "Activo";
            }
            else
            {
                estado = "Inactivo";
            }
            if (!String.IsNullOrEmpty(text_edad.Text))
            {
                edad = text_edad.Text;
            }
            if (!String.IsNullOrEmpty(text_email.Text))
            {
                email = text_email.Text;
            }
            if (!String.IsNullOrEmpty(text_facebook.Text))
            {
                facebook = text_facebook.Text;
            }
            if (!String.IsNullOrEmpty(text_rpm.Text))
            {
                rpm = text_rpm.Text;
            }
            if (!String.IsNullOrEmpty(text_movistar.Text))
            {
                movistar = int.Parse(text_movistar.Text);
            }
            if (!String.IsNullOrEmpty(text_claro.Text))
            {
                claro = int.Parse(text_claro.Text);
            }
            if (!String.IsNullOrEmpty(text_nextel.Text))
            {
                nextel = text_nextel.Text;
            }
            if (!String.IsNullOrEmpty(text_telefono.Text))
            {
                telefono = int.Parse(text_telefono.Text);
            }
            if (!String.IsNullOrEmpty(text_horario.Text))
            {
                horario = text_horario.Text;
            }
            if (!String.IsNullOrEmpty(text_observa.Text))
            {
                observa = text_observa.Text;
            }
            if (band1 == true || band2 == true || band3 == true)
            {
                MessageBox.Show(mensaje);
            }
            else
            {
                int confir1 = new NFichaTemporal().registrar_temporarl(tipo, tamaño, nombre, apellidos, dni, direccion, sexo, edad, email, facebook, rpm, movistar, claro, nextel, telefono, horario, observa, estado, voluntario);
                if (confir1 == 0)
                {
                    MessageBox.Show("Error Al Registrar Por favor intente nuevamente");

                }
                else
                {
                    MessageBox.Show("Registrado Correctamente");
                    limpiar_cajas();
                    listar_fichas();
                }
            }
        }
        private void btn_eliminar_Click(object sender, EventArgs e)
        {
            int id_temporal = int.Parse(lb_id.Text);

            if (MessageBox.Show("Seguro que dese Eliminar?", "Salir", MessageBoxButtons.YesNo) == DialogResult.Yes)
            {
                int band = new NFichaTemporal().N_eliminar_temporal(id_temporal);
                if (band == 0)
                {
                    MessageBox.Show("Error Al Eliminar Por favor intente nuevamente");
                }
                else
                {
                    MessageBox.Show("Eliminado Correctamente");

                    limpiar_cajas();
                    listar_fichas();
                }
            }
        }