2024-04-29 00:17:15 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-01-07 15:45:02 +01:00
|
|
|
class ExpertsProcedure < ApplicationRecord
|
|
|
|
belongs_to :expert
|
|
|
|
belongs_to :procedure
|
2021-01-15 16:39:07 +01:00
|
|
|
|
|
|
|
has_many :avis, dependent: :destroy
|
2021-01-07 15:45:02 +01:00
|
|
|
end
|