示例#1
0
 protected bool Equals(IeEmailNotificationAction other)
 {
     return(base.Equals(other) && WorkflowHelper.CollectionEquals(Emails, other.Emails) && string.Equals(PropertyName, other.PropertyName) && PropertyId.GetValueOrDefault() == other.PropertyId.GetValueOrDefault() && string.Equals(Message, other.Message));
 }
 protected bool Equals(IePropertyChangeAction other)
 {
     return(base.Equals(other) && string.Equals(PropertyName, other.PropertyName) && PropertyId.GetValueOrDefault() == other.PropertyId.GetValueOrDefault() && string.Equals(PropertyValue, other.PropertyValue) && WorkflowHelper.CollectionEquals(ValidValues, other.ValidValues) && Equals(UsersGroups, other.UsersGroups));
 }