public PropertyUpdatedEvent(IAcSession acSession, PropertyBase source, IPropertyUpdateIo input) : base(acSession, source) { if (input == null) { throw new System.ArgumentNullException("input"); } this.Input = input; }
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; }
internal PropertyUpdatedEvent(IAcSession acSession, PropertyBase source, IPropertyUpdateIo input, bool isPrivate) : this(acSession, source, input) { this.IsPrivate = isPrivate; }