class Google::Covid::ScreeningJob < Google::ApplicationJob
  def process
    spreadsheet = Google::Sheets::Covid::ScreeningService.call(
      @school,
      @user,
      @params['date_range'],
      @params['grades'],
      @params['classroom_ids']
    )

    send_notification(@user.id, spreadsheet.spreadsheet_id)
  end
end
