public EntityTypeUpdatedEvent(IAcSession acSession, EntityTypeBase source, IEntityTypeUpdateIo input)
     : base(acSession, source)
 {
     if (input == null)
     {
         throw new System.ArgumentNullException("input");
     }
     this.Input = input;
 }
Example #2
0
 public EntityTypeUpdatedEvent(IAcSession acSession, EntityTypeBase source, IEntityTypeUpdateIo input)
     : base(acSession, source)
 {
     if (input == null)
     {
         throw new System.ArgumentNullException("input");
     }
     this.Input = input;
 }
Example #3
0
 public void Update(IEntityTypeUpdateIo input)
 {
     this.Code = input.Code;
     this.Codespace = input.Codespace;
     this.IsCatalogued = input.IsCatalogued;
     this.DatabaseId = input.DatabaseId;
     this.Description = input.Description;
     this.DeveloperId = input.DeveloperId;
     this.EditWidth = input.EditWidth;
     this.EditHeight = input.EditHeight;
     this.Name = input.Name;
     this.SchemaName = input.SchemaName;
     this.SortCode = input.SortCode;
     this.TableName = input.TableName;
 }
Example #4
0
 public void Update(IEntityTypeUpdateIo input)
 {
     this.Code         = input.Code;
     this.Codespace    = input.Codespace;
     this.IsCatalogued = input.IsCatalogued;
     this.DatabaseId   = input.DatabaseId;
     this.Description  = input.Description;
     this.DeveloperId  = input.DeveloperId;
     this.EditWidth    = input.EditWidth;
     this.EditHeight   = input.EditHeight;
     this.Name         = input.Name;
     this.SchemaName   = input.SchemaName;
     this.SortCode     = input.SortCode;
     this.TableName    = input.TableName;
 }
 internal EntityTypeUpdatedEvent(IAcSession acSession, EntityTypeBase source, IEntityTypeUpdateIo input, bool isPrivate)
     : this(acSession, source, input)
 {
     this.IsPrivate = isPrivate;
 }
Example #6
0
 internal EntityTypeUpdatedEvent(IAcSession acSession, EntityTypeBase source, IEntityTypeUpdateIo input, bool isPrivate)
     : this(acSession, source, input)
 {
     this.IsPrivate = isPrivate;
 }