Esempio n. 1
0
 protected FieldType(string Name, long Value, DataType DataType, long? LookupTypeID = null)
 {
     this.Name = Name;
     this.Value = Value;
     this.DataType = DataType;
     this.LookupTypeID = LookupTypeID;
     RegisterType(this);
 }
 protected TestFieldType(string Name, long Value, DataType DataType)
     : base(Name, Value, DataType)
 {
 }