Exemplo n.º 1
0
        public ChatBotProcessAssignment()
        {
            this._Name = new global::Sungero.Domain.Client.SimpleProperty <global::System.String>("Name", this);
            this._Name.ValueChanged += (sender, e) => { this.NameChangedHandler(); };
            this.AddProperty(this._Name);

            this._AssignmentId = new global::Sungero.Domain.Client.SimpleProperty <global::System.Int32?>("AssignmentId", this);
            this._AssignmentId.ValueChanged += (sender, e) => { this.AssignmentIdChangedHandler(); };
            this.AddProperty(this._AssignmentId);

            this.InitChatBotProcessNavigationProperty();
        }
Exemplo n.º 2
0
 public Employee()
 {
     this._IsAllowExecuteThroughChatBot = new global::Sungero.Domain.Client.SimpleProperty <global::System.Boolean?>("IsAllowExecuteThroughChatBot", this);
     this._IsAllowExecuteThroughChatBot.ValueChanged += (sender, e) => { this.IsAllowExecuteThroughChatBotChangedHandler(); };
     this.AddProperty(this._IsAllowExecuteThroughChatBot);
 }