class SchoolYearDecorator < ApplicationDecorator
  def formatted_date_range(quarter)
    "#{formatted_school_day(quarter, :asc)} - #{formatted_school_day(quarter, :desc)}"
  end

  private
    def formatted_school_day(quarter, order)
      school_days.order(date: order).find_by(quarter: quarter).date.strftime('%b %e, %Y')
    end
end
