/// <summary> /// Lee un registro de producto en la BBDD /// </summary> /// <returns></returns> public bool Read() { Datos.FerreteriaFermeEntities bbdd = new Datos.FerreteriaFermeEntities(); try { /* Se obtiene el primer registro coincidente con el id */ Datos.REGION reg = bbdd.REGION.First(e => e.ID_REGION == ID_REGION); /* Se copian las propiedades de datos al negocio */ CommonBC.Syncronize(reg, this); return(true); } catch (Exception ex) { return(false); } }
//Agregar public bool Create() { Datos.FerreteriaFermeEntities bbdd = new Datos.FerreteriaFermeEntities(); Datos.REGION reg = new Datos.REGION(); try { CommonBC.Syncronize(this, reg); bbdd.REGION.Add(reg); bbdd.SaveChanges(); return(true); } catch (Exception ex) { bbdd.REGION.Remove(reg); return(false); } }
/// <summary> /// Elimina un registro de producto en la BBDD /// </summary> /// <returns></returns> public bool Delete() { Datos.FerreteriaFermeEntities bbdd = new Datos.FerreteriaFermeEntities(); try { /* Se obtiene el primer registro coincidente con el id */ Datos.REGION reg = bbdd.REGION.First(e => e.ID_REGION == ID_REGION); /* Se elimina el registro del EDM */ bbdd.REGION.Remove(reg); bbdd.SaveChanges(); return(true); } catch (Exception ex) { return(false); } }