module Sis module Core class Semester < ApplicationRecord belongs_to :academic_year validates :name, presence: true delegate(:label, to: :academic_year, prefix: true, allow_nil: false) end end end