# ----------------------------------------------------------------------- # Copyright © 2012 ShepHertz Technologies Pvt Ltd. All rights reserved. # ----------------------------------------------------------------------- require 'recommend/Recommender.rb' # # # This PreferenceData object is the value object which contains the properties # of PreferenceData along with the setter & getter for those properties. # # module App42 module Recommend class PreferenceData attr_accessor :userId, :itemId, :preference @userId @ItemId @preference end end end