public static int Agregar(Cliente pCliente)
        {

            int retorno = 0;

            MySqlCommand comando = new MySqlCommand(string.Format("Insert into Trabajador (nombre, apellido_paterno, apellido_materno, edad) values ('{0}','{1}','{2}', '{3}')",
               pCliente.Nombre, pCliente.Apellidop, pCliente.apellidom, pCliente.edad), BdComun.ObtenerConexion());
            retorno = comando.ExecuteNonQuery();
            return retorno;

        }
        public static List<Cliente> Buscar()
        {

            List<Cliente> _lista = new List<Cliente>();



            MySqlCommand _comando = new MySqlCommand(String.Format(

           "SELECT * FROM Trabajador"), BdComun.ObtenerConexion());

            MySqlDataReader _reader = _comando.ExecuteReader();

            while (_reader.Read())
            {

                Cliente pCliente = new Cliente();

                pCliente.Id = _reader.GetInt32(0);  
                pCliente.Nombre = _reader.GetString(1);

                pCliente.Apellidop = _reader.GetString(2);

                pCliente.apellidom = _reader.GetString(3);

                pCliente.edad = _reader.GetString(4);






                _lista.Add(pCliente);

            }



            return _lista;



        }
        public static List<Cliente> nombres()
        {
            List<Cliente> _lista = new List<Cliente>();
            MySqlCommand _comando = new MySqlCommand(String.Format(
           "SELECT nombre FROM Trabajador"), BdComun.ObtenerConexion());
            MySqlDataReader _reader = _comando.ExecuteReader();
            while (_reader.Read())
            {
                Cliente pCliente = new Cliente();

           
                pCliente.Nombre = _reader.GetString(0);


            }



            return _lista;



        }
        private void toolStripButton1_Click(object sender, EventArgs e)
        {
            Cliente pCliente = new Cliente();
            pCliente.Nombre = txtnombre.Text.Trim();
            pCliente.Apellidop = txtapellidop.Text.Trim();
            pCliente.apellidom = txtapellidom.Text.Trim();
            pCliente.edad = numedad.Value.ToString();

            int resultado = ClientesDAL.Agregar(pCliente);
            if (resultado > 0)
            {
                MessageBox.Show("Cliente Guardado Con Exito!!", "Guardado", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
            else
            {
                MessageBox.Show("No se pudo guardar el cliente", "Fallo!!", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
            }

        }