Exemplo n.º 1
0
        /// <summary>
        /// Constructeur par recopie.
        /// </summary>
        /// <param name="bean">Source.</param>
        public WfTransitionDefinition(WfTransitionDefinition bean)
        {
            if (bean == null)
            {
                throw new ArgumentNullException(nameof(bean));
            }

            this.Id         = bean.Id;
            this.Name       = bean.Name;
            this.WfadIdFrom = bean.WfadIdFrom;
            this.WfadIdTo   = bean.WfadIdTo;
            this.WfwdId     = bean.WfwdId;
            this.OnCreated(bean);
        }
Exemplo n.º 2
0
 /// <summary>
 /// Methode d'extensibilité possible pour les constructeurs par recopie.
 /// </summary>
 /// <param name="bean">Source.</param>
 partial void OnCreated(WfTransitionDefinition bean);