summaryrefslogtreecommitdiff
path: root/app/services/solidus_subscriptions/dispatcher/base.rb
blob: 30c50346d8b5ecf130ca0c2fc2bdd35ec20ce2a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

module SolidusSubscriptions
  module Dispatcher
    class Base
      attr_reader :installment, :order

      def initialize(installment, order)
        @installment = installment
        @order = order
      end

      def dispatch
        raise NotImplementedError
      end
    end
  end
end