Esempio n. 1
0
        public override bool Equals(object other)
        {
            var otherAction = other as StartWorkflowAction;

            if (otherAction == null)
            {
                return(false);
            }
            return(_workflowItems.Equals(otherAction._workflowItems));
        }