/// <summary>
        /// Mapping method from entity model to view model.
        /// </summary>
        /// <param name="match">Object that will be mapped.</param>
        /// <returns>New mapped object.</returns>
        public static MatchViewModel MapToMatchViewModel(Match match)
        {
            var matchViewModel = SetDataFromDescription(match);

            matchViewModel.Moves = MoveParser.StringBuildMatchMoves(match.Moves);
            return(matchViewModel);
        }