private void btnAgregar_Click(object sender, EventArgs e) { if (!String.IsNullOrEmpty(txtPlato.Text)) { if (!String.IsNullOrEmpty(txtPrecio.Text)) { try { ServicioController sc = new ServicioController(); if (sc.AgregarServicio(txtPlato.Text, int.Parse(txtPrecio.Text), comboServicio.Text, (int)App.user.IDADMINISTRADOR)) { sc.LlenarGrid(App.fs.dataServicios); this.Dispose(); } } catch (Exception ex) { MessageBox.Show("Ingrese un numero valido.", "Crear Servicio", MessageBoxButtons.OK); } } else { MessageBox.Show("Ingrese precio.", "Crear Servicio", MessageBoxButtons.OK); } } else { MessageBox.Show("Ingrese nombre del plato.", "Crear Servicio", MessageBoxButtons.OK); } }
private void btnEliminar_Click(object sender, EventArgs e) { try { ServicioController sc = new ServicioController(); int id = int.Parse(dataServicios.CurrentRow.Cells[0].Value.ToString()); sc.EliminarServicio(id); sc.LlenarGrid(App.fs.dataServicios); } catch (Exception ex) { MessageBox.Show("Debe seleccionar un servicio.", "Eliminar Servicio", MessageBoxButtons.OK, MessageBoxIcon.Warning); } }
private void FormularioServicio_Load(object sender, EventArgs e) { ServicioController sc = new ServicioController(); sc.LlenarGrid(dataServicios); }