Sha256: f34257c032e393a59fc4df3bcfbff8314d98dcd76c17b3f91ed8dea2ec5f6e51
Contents?: true
Size: 457 Bytes
Versions: 119
Compression:
Stored size: 457 Bytes
Contents
# frozen_string_literal: true require_dependency "renalware/hd" module Renalware module HD # An HD::Provider is a company managing dialysers for example Diaverum or Fresenius class ProviderUnit < ApplicationRecord belongs_to :hd_provider, class_name: "HD::Provider" belongs_to :hospital_unit, class_name: "Hospitals::Unit" validates :hd_provider, presence: true validates :hospital_unit, presence: true end end end
Version data entries
119 entries across 119 versions & 1 rubygems