Exemple #1
0
 public PropertyUpdatedEvent(IAcSession acSession, PropertyBase source, IPropertyUpdateIo input)
     : base(acSession, source)
 {
     if (input == null)
     {
         throw new System.ArgumentNullException("input");
     }
     this.Input = input;
 }
 public PropertyUpdatedEvent(IAcSession acSession, PropertyBase source, IPropertyUpdateIo input)
     : base(acSession, source)
 {
     if (input == null)
     {
         throw new System.ArgumentNullException("input");
     }
     this.Input = input;
 }
Exemple #3
0
 public void Update(IPropertyUpdateIo input)
 {
     this.ForeignPropertyId = input.ForeignPropertyId;
     this.Code            = input.Code;
     this.DicId           = input.DicId;
     this.Description     = input.Description;
     this.GuideWords      = input.GuideWords;
     this.Icon            = input.Icon;
     this.InputType       = input.InputType;
     this.IsDetailsShow   = input.IsDetailsShow;
     this.IsDeveloperOnly = input.IsDeveloperOnly;
     this.IsInput         = input.IsInput;
     this.IsTotalLine     = input.IsTotalLine;
     this.MaxLength       = input.MaxLength;
     this.Name            = input.Name;
     this.SortCode        = input.SortCode;
 }
Exemple #4
0
 public void Update(IPropertyUpdateIo input)
 {
     this.ForeignPropertyId = input.ForeignPropertyId;
     this.Code = input.Code;
     this.DicId = input.DicId;
     this.Description = input.Description;
     this.GuideWords = input.GuideWords;
     this.Icon = input.Icon;
     this.InputType = input.InputType;
     this.IsDetailsShow = input.IsDetailsShow;
     this.IsDeveloperOnly = input.IsDeveloperOnly;
     this.IsInput = input.IsInput;
     this.IsTotalLine = input.IsTotalLine;
     this.MaxLength = input.MaxLength;
     this.Name = input.Name;
     this.SortCode = input.SortCode;
 }
Exemple #5
0
 internal PropertyUpdatedEvent(IAcSession acSession, PropertyBase source, IPropertyUpdateIo input, bool isPrivate)
     : this(acSession, source, input)
 {
     this.IsPrivate = isPrivate;
 }
 internal PropertyUpdatedEvent(IAcSession acSession, PropertyBase source, IPropertyUpdateIo input, bool isPrivate)
     : this(acSession, source, input)
 {
     this.IsPrivate = isPrivate;
 }