public INavigationPropertyInfoAdapter Create(ISchemaForeignKey foreignKey, ISchemaTable table, IIdentifierGenerationService identifierGenerationService)
 {
     return new NavigationPropertyInfoAdapter(foreignKey, table, identifierGenerationService);
 }
 public NavigationPropertyInfoAdapter(ISchemaForeignKey foreignKey, ISchemaTable table, IIdentifierGenerationService identifierGenerationService)
 {
     this.foreignKey = foreignKey;
     this.table = table;
     this.identifierGenerationService = identifierGenerationService;
 }