class Internal::Paya::ProductsController < Internal::Paya::Controller
  def index
    render_success :ok, json: product_service
  end

  private
    def product_service
      Paya::ProductService.call(current_school)['locationinfo']['product_transactions']
    end
end
