コード例 #1
0
ファイル: AgendamentoController.cs プロジェクト: J3H0/Salao2
 public IEnumerable <Agendamento> Put(int id, [FromBody] Agendamento agendamento)
 {
     repo.Alterar(agendamento);
     return(repo.SelecionarTudo());
 }