class EdFi::StateProgramDecorator < ApplicationDecorator
  def abbreviation
    {
      curricular_material_reimbursement: 'CMT:',
      english_language_learners: 'ELL:',
      foreign_exchange: 'FE:',
      school_food_services: 'SFS:',
      virtual_education: 'VE:',
      special_education: 'SE'
    }[program.to_sym]
  end
end
