protected bool Equals(QuickNSmart.Contracts.Persistence.Account.IActionLog other)
 {
     if (other == null)
     {
         return(false);
     }
     return(Id == other.Id && IsEqualsWith(RowVersion, other.RowVersion) && IdentityId == other.IdentityId && Time == other.Time && IsEqualsWith(Subject, other.Subject) && IsEqualsWith(Action, other.Action) && IsEqualsWith(Info, other.Info));
 }
        public void CopyProperties(QuickNSmart.Contracts.Persistence.Account.IActionLog other)
        {
            if (other == null)
            {
                throw new System.ArgumentNullException(nameof(other));
            }
            bool handled = false;

            BeforeCopyProperties(other, ref handled);
            if (handled == false)
            {
                Id         = other.Id;
                RowVersion = other.RowVersion;
                IdentityId = other.IdentityId;
                Time       = other.Time;
                Subject    = other.Subject;
                Action     = other.Action;
                Info       = other.Info;
            }
            AfterCopyProperties(other);
        }
 partial void AfterCopyProperties(QuickNSmart.Contracts.Persistence.Account.IActionLog other);
 partial void BeforeCopyProperties(QuickNSmart.Contracts.Persistence.Account.IActionLog other, ref bool handled);