public IEnumerable <Standing> Get([FromQuery(Name = "country")] string country,
                                          [FromQuery(Name = "league")] string league,
                                          [FromQuery(Name = "team")] string team)
        {
            var standings = _footballService.GetStandings(country, league, team);

            return(standings);
        }