class SchoolYearStudentDecorator < ApplicationDecorator
  delegate :first_name, :last_name, :state_id, to: :student
  delegate :name, to: :grade, prefix: true, allow_nil: true
  delegate :name, :academic_year, to: :school_year, prefix: true
end
