public void AddMatch(Match match) { matchStorage.AddMacth(match); }
public void UpdateMatch(int matchId, Match match) { Match currentMatch = GetMatchById(matchId); if (currentMatch == null) throw new Exception("Матч не найден"); matchStorage.UpdateMatch(matchId, match); }