Ejemplo n.º 1
0
 protected bool Equals(QnSContactManager.Contracts.Persistence.Account.IActionLog other)
 {
     if (other == null)
     {
         return(false);
     }
     return(Id == other.Id && IsEqualsWith(Timestamp, other.Timestamp) && IdentityId == other.IdentityId && Time == other.Time && IsEqualsWith(Subject, other.Subject) && IsEqualsWith(Action, other.Action) && IsEqualsWith(Info, other.Info));
 }
Ejemplo n.º 2
0
        public void CopyProperties(QnSContactManager.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;
                Timestamp  = other.Timestamp;
                IdentityId = other.IdentityId;
                Time       = other.Time;
                Subject    = other.Subject;
                Action     = other.Action;
                Info       = other.Info;
            }
            AfterCopyProperties(other);
        }
Ejemplo n.º 3
0
 partial void AfterCopyProperties(QnSContactManager.Contracts.Persistence.Account.IActionLog other);
Ejemplo n.º 4
0
 partial void BeforeCopyProperties(QnSContactManager.Contracts.Persistence.Account.IActionLog other, ref bool handled);