class Maintenance::Nursing::ScreeningBlankJob
  include Sidekiq::Worker

  def perform(school_id)
    school = School.find(school_id)

    school.nursing_screenings
      .where(height: 0, weight: 0, hearing: nil, sight: nil)
      .destroy_all
  end
end
