public static bool Eliminar(TiposDeUsuario existente) { bool resultado = false; using (var conexion = new ProyectoFinalDataBase()) { try { conexion.Entry(existente).State = EntityState.Deleted; conexion.SaveChanges(); resultado = true; } catch (Exception) { throw; } } return(resultado); }
public static bool Actualizar(Huevos existente) { bool resultado = false; using (var conexion = new ProyectoFinalDataBase()) { try { conexion.Entry(existente).State = EntityState.Modified; conexion.SaveChanges(); resultado = true; } catch (Exception) { throw; } } return(resultado); }