/// <summary> /// Pause the current match /// </summary> public void Pause() { if (Duration.SessionInProgress) { Duration.End(); currentSet().Pause(); } }
/// <summary> /// Stop the this match /// </summary> public void End(MatchStatus newStatus) { Status = newStatus; Duration.End(); TennisSet _set = currentSet(); if (_set != null) { _set.End(Winner); } }