| Class | Section |
| In: |
app/models/section.rb
|
| Parent: | ActiveRecord::Base |
returns the number of students in this section
# File app/models/section.rb, line 12
12: def count_students
13: return students.size
14: end