Sha256: df014c3a70e97e47956b1f27e71efb7ded074deb9aa05c635cbafb0d7c086744
Contents?: true
Size: 377 Bytes
Versions: 8
Compression:
Stored size: 377 Bytes
Contents
# frozen_string_literal: true module MasterDataTool module Report class PrintAffectedTableReport include Core def initialize(master_data) super(master_data) @reports = [] end def print(printer) printer.print(convert_to_ltsv({operation: :affected_table, table_name: @master_data.table_name})) end end end end
Version data entries
8 entries across 8 versions & 1 rubygems