public void AddRate(String Id, Rate r) { Suggestion s = suggestionStorage.Get(Id); s.Ratings.Add(r); s.SetAvgRate(); suggestionStorage.Update(s); }