Sha256: eb03bced9df3914b3e9a0498d938f0c049ba4b6bf792c3b705e177298beeaadc
Contents?: true
Size: 442 Bytes
Versions: 104
Compression:
Stored size: 442 Bytes
Contents
# frozen_string_literal: true require_dependency "renalware/pathology/requests" module Renalware module Pathology module Requests class RequestsFactory def initialize(patients, params) @patients = patients @params = params end def build @patients.map do |patient| RequestFactory.new(patient, @params).build end end end end end end
Version data entries
104 entries across 104 versions & 1 rubygems