示例#1
0
 public Team PutTeam(int id, Team team)
 {
     teamsRepository.UpdateTeam(team);
     teamsRepository.Save();
     return(team);
 }