コード例 #1
0
ファイル: EntityMap.cs プロジェクト: jmlopez/Integrator
 public void AddPropertyMap(PropertyMap propertyMap)
 {
     _propertyMaps.Fill(propertyMap);
 }
コード例 #2
0
ファイル: PropertyMap.cs プロジェクト: jmlopez/Integrator
 public bool Equals(PropertyMap other)
 {
     if (ReferenceEquals(null, other)) return false;
     if (ReferenceEquals(this, other)) return true;
     return Equals(other.Request, Request);
 }