public void Predict()
        {
            var model = new MatchPredictSchema {
                Token         = "token",
                DeviceId      = "",
                MatchId       = 1,
                HomeClubId    = 1,
                HomeClubScore = 1,
                AwayClubId    = 1,
                AwayClubScore = 1
            };

            _matchService.Predict(model);
            Assert.IsTrue(model.StatusCode != 0);
        }
Esempio n. 2
0
 public async Task Predict(MatchPredictSchema model)
 {
     await _matchPredict.ExecuteReturnLessAsync(model);
 }