class Formulas::StudentLoanRepayment::RepaymentBase

Public Class Methods

new(salary:, repayment_threshold:) click to toggle source
# File lib/formulas/student_loan_repayment/repayment_base.rb, line 4
def initialize(salary:, repayment_threshold:)
  @salary = salary
  @repayment_threshold = repayment_threshold
end