public void CopyProperties(QnSHolidayCalendar.Contracts.Business.App.IHolidayEntry other)
        {
            if (other == null)
            {
                throw new System.ArgumentNullException(nameof(other));
            }
            bool handled = false;

            BeforeCopyProperties(other, ref handled);
            if (handled == false)
            {
                Id          = other.Id;
                Timestamp   = other.Timestamp;
                From        = other.From;
                To          = other.To;
                Location    = other.Location;
                Description = other.Description;
                HolidayType = other.HolidayType;
                RepeatType  = other.RepeatType;
            }
            AfterCopyProperties(other);
        }
 partial void OnRepeatTypeChanging(ref bool handled, ref QnSHolidayCalendar.Contracts.Modules.App.RepeatType _repeatType);