private void button3_Click(object sender, EventArgs e) { try { NOMINA p = new NOMINA(); p.Nombre = txtnombre.Text.Trim(); p.Fecha_Inicio = Convert.ToDateTime(dtpfechainicio.Text.Trim()); p.Fecha_Fin = Convert.ToDateTime(dtpfechafinal.Text.Trim()); p.Descripcion = txtdescripcion.Text.Trim(); R_Humanos.AgregarNomina(p); MessageBox.Show("Nómina Creada"); } catch (Exception ex) { MessageBox.Show(ex.Message); } }