public static bool Modificar(Cotizaciones Co) { bool paso = false; try { ContextoCot dbase = new ContextoCot(); dbase.Entry(Co).State = EntityState.Modified; dbase.SaveChanges(); paso = true; } catch (Exception) { throw; } return(paso); }
public static bool Guardar(Cotizaciones Co) { bool paso = false; try { ContextoCot dbase = new ContextoCot(); dbase.Co.Add(Co); dbase.SaveChanges(); paso = true; } catch (Exception) { throw; } return(paso); }
public static bool Eliminar(int Id) { bool paso = false; try { ContextoCot dbase = new ContextoCot(); Cotizaciones Cot = dbase.Co.Find(Id); dbase.Co.Remove(Cot); dbase.SaveChanges(); paso = true; } catch (Exception) { throw; } return(paso); }