public async Task <IActionResult> DeleteMatch(int MatchId)
        {
            await matchRepository.DeleteMatchByIdAsync(MatchId);

            return(await CreateViewModel());
        }