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