Skip to content

Instantly share code, notes, and snippets.

@gmgent
Created April 23, 2011 06:50
Show Gist options
  • Save gmgent/938425 to your computer and use it in GitHub Desktop.
Save gmgent/938425 to your computer and use it in GitHub Desktop.
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment