Created
April 23, 2011 06:50
Revisions
-
Krister Axel created this gist
Apr 23, 2011 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ module DataGrid class Section attr_reader :care_area, :patient_population, :total_records, :data_section def initialize(care_area, population, total_records, drug_records) @care_area = care_area @patient_population = population @total_records = total_records @data_section = drug_records end end end