private void FormEditarTipoBodega_Load(object sender, EventArgs e) { //lenar datos tipo_bodega tb = TipoBodegasBL.ObtenerIdTipoBodega(idTipoBodega); TxtTipo.Text = tb.tipo; }
private void BtnGuardarTipoBodega_Click(object sender, EventArgs e) { if (TxtTipo.Text == "") { MessageBox.Show("Campo requerido", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } else { tipo_bodega tipob = new tipo_bodega(); tipob.tipo = TxtTipo.Text; tipob.estado = 1; TipoBodegasBL.CrearTipoBodega(tipob); MessageBox.Show("Tipo de Bodega registrada Correctamente", "Registro Agregado", MessageBoxButtons.OK, MessageBoxIcon.Information); CargarTipoBodegas(); if (dtwtipobodega.RowCount > 0) { btneditar.Enabled = true; btneliminar.Enabled = true; } else { btneditar.Enabled = false; btneliminar.Enabled = false; } } }
public static tipo_bodega CrearTipoBodega(tipo_bodega tipobodega) { using (inventarioEntities bd = new inventarioEntities()) { tipo_bodega tipob = new tipo_bodega(); tipob.tipo = tipobodega.tipo; tipob.estado = tipobodega.estado; bd.tipo_bodega.Add(tipob); bd.SaveChanges(); } return(tipobodega); }
public static tipo_bodega EditarTipoBodega(tipo_bodega tipobodegat) { using (inventarioEntities bd = new inventarioEntities()) { var bg = bd.tipo_bodega.First(x => x.id_tipo_bodega == tipobodegat.id_tipo_bodega);//obtenemos registro por medio de id bg.id_tipo_bodega = tipobodegat.id_tipo_bodega; bg.tipo = tipobodegat.tipo; bg.estado = tipobodegat.estado; bd.Entry(bg).State = System.Data.Entity.EntityState.Modified; bd.SaveChanges(); } return(tipobodegat); }
public static tipo_bodega ObtenerIdTipoBodega(int id) { tipo_bodega tipobod = new tipo_bodega(); using (inventarioEntities bd = new inventarioEntities()) { var tipobo = bd.tipo_bodega.First(x => x.id_tipo_bodega == id); tipobo.id_tipo_bodega = tipobo.id_tipo_bodega; tipobo.tipo = tipobo.tipo; tipobo.estado = tipobo.estado; return(tipobo); } }
private void BtnEditarTipoBodega_Click(object sender, EventArgs e) { if (TxtTipo.Text == "") { MessageBox.Show("Campo requerido", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } else { tipo_bodega tb = new tipo_bodega(); tb.id_tipo_bodega = idTipoBodega; tb.tipo = TxtTipo.Text; tb.estado = 1; TipoBodegasBL.EditarTipoBodega(tb); MessageBox.Show("Tipo Bodega Editada Correctamente", "Registro Editado", MessageBoxButtons.OK, MessageBoxIcon.Information); this.Close(); } }
public static tipo_bodega EditarTipoBodega(tipo_bodega tipobodegat) { return(TipoBodegaDAL.EditarTipoBodega(tipobodegat)); }
public static tipo_bodega CrearTipoBodega(tipo_bodega tipobode) { return(TipoBodegaDAL.CrearTipoBodega(tipobode)); }
public tipo_bodega Crear_Tipo(tipo_bodega tipobode) { throw new NotImplementedException(); }