private void btnGuardar_Click(object sender, EventArgs e) { CRUDManager.Entidades.Citas citas = new CRUDManager.Entidades.Citas(); citas.IdMedico = cbxMedico.SelectedValue.ToString(); citas.IdPaciente = idPaciente; citas.FechaCita = SessionManager.FechaHelper.FormatearFecha(dtpFechaCitas.Text); citas.Estado = cbxEstado.SelectedValue.ToString(); citas.Motivos = txtMotivos.Text; if (ValidarDatos()) { if (citas.Insertar()) { MessageBox.Show("Cita agregada correctamente", "Aviso", MessageBoxButtons.OK, MessageBoxIcon.Information); Close(); } else { MessageBox.Show("Error inesperado", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } } }
private void btnCompletar_Click_1(object sender, EventArgs e) { if (dgvCitas.RowCount > 0) { CRUDManager.Entidades.Citas c = new CRUDManager.Entidades.Citas(); c.IdCita = dgvCitas.CurrentRow.Cells["idCita"].Value.ToString(); if (c.Completar()) { MessageBox.Show("Cita Completada", "Aviso", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); CargarCitas(); } } }