public bool Deletar(int id) { using (FilmesContext ctx = new FilmesContext()) { try { Usuario UsuarioBuscado = ctx.Usuario.Find(id); if (UsuarioBuscado == null) { return(false); } else if (UsuarioBuscado != null) { ctx.Remove(UsuarioBuscado); ctx.SaveChanges(); return(true); } return(false); } catch (Exception e) { return(false); } } }