Sha256: 884dee7d8ce155f9c6c23a5c284ac81bbd1015d38a332bdb016185246c18b9a2
Contents?: true
Size: 435 Bytes
Versions: 47
Compression:
Stored size: 435 Bytes
Contents
module Presenter module Sap class RecommendationReport def initialize(view_model) @view_model = view_model end def to_hash complete_recommendations = @view_model.recommendations_for_report.each do |recommendations| recommendations[:assessment_id] = @view_model.assessment_id end { recommendations: complete_recommendations } end end end end
Version data entries
47 entries across 47 versions & 1 rubygems