Example #1
0
 public static DatabaseProperty Create(string propertyName, Persist persistency)
 {
     return new DatabaseProperty(propertyName,persistency);
 }
Example #2
0
 private DatabaseProperty(string propertyName, Persist persistency)
 {
     PropertyName = propertyName;
     Persistency = persistency;
 }