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