Exemplo n.º 1
0
 public static DatabaseProperty Create(string propertyName, Persist persistency)
 {
     return new DatabaseProperty(propertyName,persistency);
 }
Exemplo n.º 2
0
 private DatabaseProperty(string propertyName, Persist persistency)
 {
     PropertyName = propertyName;
     Persistency = persistency;
 }