Пример #1
0
        public HttpResponseMessage GetSpotifyRecommendations(RecommendationCriteriaBase recCriteria)
        {
            SpotifyRecommendations recs = new SpotifyRecommendations();

            // currently returns an empty class
            // These calls should use async await to free up resources on the Server

            return(Request.CreateResponse(System.Net.HttpStatusCode.OK, recs));
        }
 public RecommendationsModel(IPublishedContent content, CultureInfo culture) : base(content, culture)
 {
     criteria = new RecommendationCriteriaBase();
 }