public async Task <bool> PostScore(UserScore userScore) { var stringContent = new StringContent(_converter.SerializeScore(userScore), System.Text.Encoding.UTF8, "application/json"); var isSuccessStatusCode = await _httpService.Post(ResourceIdentifier.RatingUri(), stringContent); return(isSuccessStatusCode); }