Exemplo n.º 1
0
 public Property(ModelCode id, long int64Value)
 {
     this.id    = id;
     this.value = new PropertyValue();
     SetValue(int64Value);
 }
Exemplo n.º 2
0
 public Property(ModelCode id, short int16Value)
 {
     this.id    = id;
     this.value = new PropertyValue();
     SetValue(int16Value);
 }
Exemplo n.º 3
0
 public Property(ModelCode id, int int32Value)
 {
     this.id    = id;
     this.value = new PropertyValue();
     SetValue(int32Value);
 }
Exemplo n.º 4
0
 public Property(ModelCode id, byte byteValue)
 {
     this.id    = id;
     this.value = new PropertyValue();
     SetValue(byteValue);
 }