Ejemplo n.º 1
0
 public DataProperty(string dbName, PropertyConcerns concerns, T defaultValue = default(T))
 {
     DbName            = dbName;
     Concerns          = concerns;
     Value             = defaultValue;
     this.defaultValue = defaultValue;
 }
Ejemplo n.º 2
0
 public RequiredParsedDataProperty(string dbName, PropertyConcerns concerns, T defaultValue = default(T))
     : base(dbName, concerns, defaultValue)
 {
 }