module

class < Nayati::OperationImplementerBase
  def initialize(operation_context, result)
    @operation_context = operation_context
    @result = result
  end

  def to_fail?
    # To be implemented or deleted
  end

  def perform_failure
    # Please implemented or deleted
  end

  def perform
    # To be implemented
  end
end

end