示例#1
0
 public SsdSetUpdatedEvent(IAcSession acSession, SsdSetBase source, ISsdSetUpdateIo output)
     : base(acSession, source)
 {
     if (output == null)
     {
         throw new System.ArgumentNullException("output");
     }
     this.Output = output;
 }
示例#2
0
 public SsdSetUpdatedEvent(IAcSession acSession, SsdSetBase source, ISsdSetUpdateIo output)
     : base(acSession, source)
 {
     if (output == null)
     {
         throw new System.ArgumentNullException("output");
     }
     this.Output = output;
 }
示例#3
0
 internal SsdSetUpdatedEvent(IAcSession acSession, SsdSetBase source, ISsdSetUpdateIo input, bool isPrivate)
     : this(acSession, source, input)
 {
     this.IsPrivate = isPrivate;
 }
示例#4
0
 public SsdSetRemovedEvent(IAcSession acSession, SsdSetBase source)
     : base(acSession, source)
 {
 }
示例#5
0
 internal SsdSetRemovedEvent(IAcSession acSession, SsdSetBase source, bool isPrivate)
     : this(acSession, source)
 {
     this.IsPrivate = isPrivate;
 }
示例#6
0
 internal SsdSetUpdatedEvent(IAcSession acSession, SsdSetBase source, ISsdSetUpdateIo input, bool isPrivate)
     : this(acSession, source, input)
 {
     this.IsPrivate = isPrivate;
 }
示例#7
0
 internal SsdSetRemovedEvent(IAcSession acSession, SsdSetBase source, bool isPrivate)
     : this(acSession, source)
 {
     this.IsPrivate = isPrivate;
 }
示例#8
0
 public SsdSetRemovedEvent(IAcSession acSession, SsdSetBase source)
     : base(acSession, source)
 {
 }
示例#9
0
 public SsdSetAddedEvent(IAcSession acSession, SsdSetBase source, ISsdSetCreateIo output)
     : base(acSession, source, output)
 {
 }