public MatchHelper(SportBetContext dbcontext, IRepository <Match> matchRepository, IRepository <MatchOdd> oddRepository)
 {
     _dbcontext       = dbcontext;
     _oddRepository   = oddRepository;
     _matchRepository = matchRepository;
 }
 public Repository(SportBetContext context)
 {
     _context = context;
 }