Sha256: 51b53f636c9f7d56b4486f70dc9f8aaba9ba3329aab4fcefa2004463443db90e
Contents?: true
Size: 411 Bytes
Versions: 28
Compression:
Stored size: 411 Bytes
Contents
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
28 entries across 28 versions & 1 rubygems