module Employee::ClassroomScoped
  extend ActiveSupport::Concern

  def classroom
    @classroom ||= current_employee.classrooms.find_by(id: params[:classroom_id])
  end

  def students
    classroom.students
  end
end
