public void Adicionar(Jogador jogador) { try { ctx.Add(jogador); ctx.SaveChanges(); } catch (Exception ex) { throw new Exception(ex.Message); } }
public Jogador Cadastrar(Jogador jogador) { try { _ctx.Jogadores.Add(jogador); _ctx.SaveChanges(); return(jogador); } catch (Exception ex) { throw new Exception(ex.Message); } }