Beispiel #1
0
        public async void GetBoxScore(int idTeam)
        {
            IsBusy   = true;
            BoxScore = new List <Boxscore>();

            var boxScoreService = new BoxScoreService();

            BoxScore = await boxScoreService.GetBoxScore(idCalendario, idTeam);

            IsBusy = false;
        }