AgileVentures/osra

View on GitHub
app/services/update_orphan_sponsorship_status.rb

Summary

Maintainability
A
0 mins
Test Coverage
class UpdateOrphanSponsorshipStatus

  def initialize(orphan, status)
    @orphan = orphan
    @status = status
  end

  def call
    orphan.sponsorship_status = status
  end

  private

  attr_reader :orphan, :status
end