class Reporting::Admissions::StudentJob < Reporting::Job
  include Sidekiq::Worker

  def process
    @tmp_file = Pdf::Admissions::StudentService.call(@school, @params)
    @filename = "students_#{timestamp}.pdf"
    save_to_user
    send_report
  end
end
