Exemple #1
0
 public static Match GetFromDTO(MatchDTO match) => new Match(
     id: match.Id,
     team1: match.Team1,
     team2: match.Team2,
     stage: match.Stage,
     tickets: match.Tickets,
     price: match.Price);
Exemple #2
0
 public ShowModifiesResponse(MatchDTO match)
 {
     Match = match;
 }