예제 #1
0
 public IEnumerable <ProductInfoToken> GetFavorites(string id)
 {
     return(_userPreferencesRepository.AllFavorites(id).Select(c => new ProductInfoToken {
         id = c.Key, name = c.Value
     }));
 }