public Match CreateMatch(MatchDto x)
        {
            var entity = _mapper.Map <Match>(x);

            return(_matchRepo.CreateMatch(entity));
        }
 public async Task <int> CreateMatch()
 {
     return(await _matchRepo.CreateMatch());
 }