Sha256: 3db45e0cd8affe1f4cb0957374fd002e40de915ef645afe21c76a9effaa04d24
Contents?: true
Size: 486 Bytes
Versions: 52
Compression:
Stored size: 486 Bytes
Contents
# frozen_string_literal: true module Renalware module Patients module Ingestion # Responsible for mapping attributes from a message to attributes # to domain models. # class MessageMapper def initialize(message) @message = message end attr_reader :message def fetch raise NotImplementedError end # def source # Message.for(message) # end end end end end
Version data entries
52 entries across 52 versions & 1 rubygems