예제 #1
0
 public DsdSetUpdatedEvent(IAcSession acSession, DsdSetBase source, IDsdSetUpdateIo output)
     : base(acSession, source)
 {
     if (output == null)
     {
         throw new System.ArgumentNullException("output");
     }
     this.Output = output;
 }
예제 #2
0
 public DsdSetUpdatedEvent(IAcSession acSession, DsdSetBase source, IDsdSetUpdateIo output)
     : base(acSession, source)
 {
     if (output == null)
     {
         throw new System.ArgumentNullException("output");
     }
     this.Output = output;
 }
예제 #3
0
 internal DsdSetUpdatedEvent(IAcSession acSession, DsdSetBase source, IDsdSetUpdateIo input, bool isPrivate)
     : this(acSession, source, input)
 {
     this.IsPrivate = isPrivate;
 }
예제 #4
0
 internal DsdSetRemovedEvent(IAcSession acSession, DsdSetBase source, bool isPrivate)
     : this(acSession, source)
 {
     this.IsPrivate = isPrivate;
 }
예제 #5
0
 public DsdSetRemovedEvent(IAcSession acSession, DsdSetBase source)
     : base(acSession, source)
 {
 }
예제 #6
0
 public DsdSetAddedEvent(IAcSession acSession, DsdSetBase source, IDsdSetCreateIo output)
     : base(acSession, source, output)
 {
 }
예제 #7
0
 public DsdSetRemovedEvent(IAcSession acSession, DsdSetBase source)
     : base(acSession, source)
 {
 }
예제 #8
0
 internal DsdSetRemovedEvent(IAcSession acSession, DsdSetBase source, bool isPrivate)
     : this(acSession, source)
 {
     this.IsPrivate = isPrivate;
 }
예제 #9
0
 internal DsdSetUpdatedEvent(IAcSession acSession, DsdSetBase source, IDsdSetUpdateIo input, bool isPrivate)
     : this(acSession, source, input)
 {
     this.IsPrivate = isPrivate;
 }