public void Load(string ID, string Name, bool Required, e_dbType dbType, string defaultValue, string length)
 {
     this.ID           = ID;
     this.Name         = Name;
     this.Required     = Required;
     this.DbType       = dbType;
     this.DefaultValue = defaultValue;
     this.Length       = length;
 }
 public EntityPropertyModel(string ID, string Name, bool Required, e_dbType dbType, string defaultValue, string length)
 {
     this.Load(ID, Name, Required, dbType, defaultValue, length);
     this.IsActive = true;
 }