Skip to content

Instantly share code, notes, and snippets.

@gmgent
Created April 23, 2011 06:50

Revisions

  1. Krister Axel created this gist Apr 23, 2011.
    12 changes: 12 additions & 0 deletions section.rb
    Original 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