예제 #1
0
        /// <summary>
        /// Constructeur par recopie.
        /// </summary>
        /// <param name="bean">Source.</param>
        public WfWorkflow(WfWorkflow bean)
        {
            if (bean == null)
            {
                throw new ArgumentNullException(nameof(bean));
            }

            this.WfwId        = bean.WfwId;
            this.CreationDate = bean.CreationDate;
            this.ItemId       = bean.ItemId;
            this.User         = bean.User;
            this.UserLogic    = bean.UserLogic;

            this.WfwdId  = bean.WfwdId;
            this.WfsCode = bean.WfsCode;
            this.WfaId2  = bean.WfaId2;

            this.OnCreated(bean);
        }
예제 #2
0
 /// <summary>
 /// Methode d'extensibilité possible pour les constructeurs par recopie.
 /// </summary>
 /// <param name="bean">Source.</param>
 partial void OnCreated(WfWorkflow bean);