Ejemplo n.º 1
0
 public NodeUpdatedEvent(IAcSession acSession, NodeBase source, INodeUpdateIo output)
     : base(acSession, source)
 {
     if (output == null)
     {
         throw new System.ArgumentNullException("output");
     }
     this.Output = output;
 }
Ejemplo n.º 2
0
 public NodeUpdatedEvent(IAcSession acSession, NodeBase source, INodeUpdateIo output)
     : base(acSession, source)
 {
     if (output == null)
     {
         throw new System.ArgumentNullException("output");
     }
     this.Output = output;
 }
Ejemplo n.º 3
0
 public void Update(INodeUpdateIo input)
 {
     this.Abstract = input.Abstract;
     this.AnycmdApiAddress = input.AnycmdApiAddress;
     this.AnycmdWsAddress = input.AnycmdWsAddress;
     this.BeatPeriod = input.BeatPeriod;
     this.Code = input.Code;
     this.Description = input.Description;
     this.Email = input.Email;
     this.Icon = input.Icon;
     this.IsEnabled = input.IsEnabled;
     this.Mobile = input.Mobile;
     this.Name = input.Name;
     this.Catalog = input.Catalog;
     this.PublicKey = input.PublicKey;
     this.Qq = input.Qq;
     this.SecretKey = input.SecretKey;
     this.SortCode = input.SortCode;
     this.Steward = input.Steward;
     this.Telephone = input.Telephone;
     this.TransferId = input.TransferId;
 }
Ejemplo n.º 4
0
 public void Update(INodeUpdateIo input)
 {
     this.Abstract         = input.Abstract;
     this.AnycmdApiAddress = input.AnycmdApiAddress;
     this.AnycmdWsAddress  = input.AnycmdWsAddress;
     this.BeatPeriod       = input.BeatPeriod;
     this.Code             = input.Code;
     this.Description      = input.Description;
     this.Email            = input.Email;
     this.Icon             = input.Icon;
     this.IsEnabled        = input.IsEnabled;
     this.Mobile           = input.Mobile;
     this.Name             = input.Name;
     this.Catalog          = input.Catalog;
     this.PublicKey        = input.PublicKey;
     this.Qq         = input.Qq;
     this.SecretKey  = input.SecretKey;
     this.SortCode   = input.SortCode;
     this.Steward    = input.Steward;
     this.Telephone  = input.Telephone;
     this.TransferId = input.TransferId;
 }
Ejemplo n.º 5
0
 internal NodeUpdatedEvent(IAcSession acSession, NodeBase source, INodeUpdateIo input, bool isPrivate)
     : this(acSession, source, input)
 {
     this.IsPrivate = isPrivate;
 }
Ejemplo n.º 6
0
 public static void UpdateNode(this IAcDomain acDomain, IAcSession acSession, INodeUpdateIo input)
 {
     acDomain.Handle(new UpdateNodeCommand(acSession, input));
 }
Ejemplo n.º 7
0
 internal NodeUpdatedEvent(IAcSession acSession, NodeBase source, INodeUpdateIo input, bool isPrivate)
     : this(acSession, source, input)
 {
     this.IsPrivate = isPrivate;
 }
Ejemplo n.º 8
0
 public static void UpdateNode(this IAcDomain acDomain, IAcSession acSession, INodeUpdateIo input)
 {
     acDomain.Handle(new UpdateNodeCommand(acSession, input));
 }