public NodeElementCareAddedEvent(IAcSession acSession, NodeElementCareBase source, INodeElementCareCreateIo output)
     : base(acSession, source)
 {
     if (output == null)
     {
         throw new System.ArgumentNullException("output");
     }
     this.Output = output;
 }
Example #2
0
 public static NodeElementCare Create(INodeElementCareCreateIo input)
 {
     Debug.Assert(input.Id != null, "input.Id != null");
     return(new NodeElementCare(input.Id.Value)
     {
         ElementId = input.ElementId,
         NodeId = input.NodeId,
         IsInfoIdItem = input.IsInfoIdItem
     });
 }
Example #3
0
 public static NodeElementCare Create(INodeElementCareCreateIo input)
 {
     Debug.Assert(input.Id != null, "input.Id != null");
     return new NodeElementCare
     {
         Id = input.Id.Value,
         ElementId = input.ElementId,
         NodeId = input.NodeId,
         IsInfoIdItem = input.IsInfoIdItem
     };
 }
Example #4
0
 internal NodeElementCareAddedEvent(IAcSession acSession, NodeElementCareBase source, INodeElementCareCreateIo input, bool isPrivate)
     : this(acSession, source, input)
 {
     this.IsPrivate = isPrivate;
 }
Example #5
0
 public NodeElementCareAddedEvent(IAcSession acSession, NodeElementCareBase source, INodeElementCareCreateIo output)
     : base(acSession, source)
 {
     if (output == null)
     {
         throw new System.ArgumentNullException("output");
     }
     this.Output = output;
 }
 internal NodeElementCareAddedEvent(IAcSession acSession, NodeElementCareBase source, INodeElementCareCreateIo input, bool isPrivate)
     : this(acSession, source, input)
 {
     this.IsPrivate = isPrivate;
 }
Example #7
0
 public static void AddNodeElementCare(this IAcDomain acDomain, IAcSession acSession, INodeElementCareCreateIo input)
 {
     acDomain.Handle(new AddNodeElementCareCommand(acSession, input));
 }
 public static void AddNodeElementCare(this IAcDomain acDomain, IAcSession acSession, INodeElementCareCreateIo input)
 {
     acDomain.Handle(new AddNodeElementCareCommand(acSession, input));
 }