ministryofjustice/Claim-for-Crown-Court-Defence

View on GitHub
app/services/ccr/fee/hardship_fee_adapter.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
require_relative 'basic_fee_adaptable'

module CCR
  module Fee
    class HardshipFeeAdapter < SimpleBillAdapter
      acts_as_simple_bill bill_type: 'AGFS_ADVANCE', bill_subtype: 'AGFS_HARDSHIP'

      include BasicFeeAdaptable
    end
  end
end