/// <summary> /// Edita um pacote /// </summary> /// <param name="pacote">pacote a ser Editado</param> /// <returns>Retorna o pacote editado</returns> public PacoteDominio Editar(PacoteDominio pacote) { try { using (CodeTurContext ctx = new CodeTurContext()) { ctx.Entry <PacoteDominio>(pacote).State = Microsoft.EntityFrameworkCore.EntityState.Modified; ctx.SaveChanges(); return(pacote); } } catch (Exception ex) { throw new Exception(ex.Message); } }
public bool ExcluirPacote(int id) { try { using (CodeTurContext ctx = new CodeTurContext()) { var pacote = BuscarPorId(id); ctx.Entry <PacoteDominio>(pacote).State = Microsoft.EntityFrameworkCore.EntityState.Deleted; ctx.SaveChanges(); return(true); } } catch (Exception ex) { throw new Exception(ex.Message); } }
public void Alterar(Usuario usuario) { _context.Entry(usuario).State = EntityState.Modified; _context.SaveChanges(); }
public void Alterar(Pacote pacote) { _context.Entry(pacote).State = EntityState.Modified; _context.SaveChanges(); }
public void Alterar(Pacote pacote) { _context.Entry(pacote).State = EntityState.Modified; }
public void Alterar(Usuario usuario) { _context.Entry(usuario).State = Microsoft.EntityFrameworkCore.EntityState.Modified; _context.SaveChanges(); }