protected bool Equals(QnSHolidayCalendar.Contracts.Modules.Language.ITranslation other)
 {
     if (other == null)
     {
         return(false);
     }
     return(Id == other.Id && IsEqualsWith(Timestamp, other.Timestamp) && KeyLanguage == other.KeyLanguage && IsEqualsWith(Key, other.Key) && ValueLanguage == other.ValueLanguage && IsEqualsWith(Value, other.Value));
 }
        public void CopyProperties(QnSHolidayCalendar.Contracts.Modules.Language.ITranslation 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;
                KeyLanguage   = other.KeyLanguage;
                Key           = other.Key;
                ValueLanguage = other.ValueLanguage;
                Value         = other.Value;
            }
            AfterCopyProperties(other);
        }
 partial void AfterCopyProperties(QnSHolidayCalendar.Contracts.Modules.Language.ITranslation other);
 partial void BeforeCopyProperties(QnSHolidayCalendar.Contracts.Modules.Language.ITranslation other, ref bool handled);