Skip to content

Commit

Permalink
removed core mappings
Browse files Browse the repository at this point in the history
  • Loading branch information
zygis0408 committed Dec 12, 2022
1 parent fc76c9e commit 6b67d74
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,6 @@ public CompanyDetailsVocabulary()
});

this.AddMapping(this.FormattedAddress, CluedIn.Core.Data.Vocabularies.Vocabularies.CluedInOrganization.Address);
this.AddMapping(this.StreetNumber, CluedIn.Core.Data.Vocabularies.Vocabularies.CluedInOrganization.AddressStreetNumber);
this.AddMapping(this.StreetName, CluedIn.Core.Data.Vocabularies.Vocabularies.CluedInOrganization.AddressStreetName);
this.AddMapping(this.CityName, CluedIn.Core.Data.Vocabularies.Vocabularies.CluedInOrganization.AddressCity);
this.AddMapping(this.CountryCode, CluedIn.Core.Data.Vocabularies.Vocabularies.CluedInOrganization.AddressCountryCode);
this.AddMapping(this.PostalCode, CluedIn.Core.Data.Vocabularies.Vocabularies.CluedInOrganization.AddressZipCode);
this.AddMapping(this.InternationalPhoneNumber, CluedIn.Core.Data.Vocabularies.Vocabularies.CluedInOrganization.PhoneNumber);
this.AddMapping(this.Latitude, CluedIn.Core.Data.Vocabularies.Vocabularies.CluedInLocation.AddressLattitude);
this.AddMapping(this.Longitude, CluedIn.Core.Data.Vocabularies.Vocabularies.CluedInLocation.AddressLongitude);
}

public VocabularyKey AddressComponents { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,6 @@ public LocationDetailsVocabulary()
this.ComponentsAddress = group.Add(new VocabularyKey("componentsAddress", VocabularyKeyDataType.Text, VocabularyKeyVisibility.Visible));
});

this.AddMapping(this.FormattedAddress, CluedIn.Core.Data.Vocabularies.Vocabularies.CluedInLocation.Address);
this.AddMapping(this.Latitude, CluedIn.Core.Data.Vocabularies.Vocabularies.CluedInLocation.AddressLattitude);
this.AddMapping(this.Longitude, CluedIn.Core.Data.Vocabularies.Vocabularies.CluedInLocation.AddressLongitude);
this.AddMapping(this.NameStreet, CluedIn.Core.Data.Vocabularies.Vocabularies.CluedInLocation.AddressNameStreet);
this.AddMapping(this.NumberStreet, CluedIn.Core.Data.Vocabularies.Vocabularies.CluedInLocation.AddressStreetNumber);
this.AddMapping(this.NameCity, CluedIn.Core.Data.Vocabularies.Vocabularies.CluedInLocation.AddressCity);
this.AddMapping(this.CodeCountry, CluedIn.Core.Data.Vocabularies.Vocabularies.CluedInLocation.AddressCountryCode);
this.AddMapping(this.CodePostal, CluedIn.Core.Data.Vocabularies.Vocabularies.CluedInLocation.AddressZipCode);

}

Expand Down

0 comments on commit 6b67d74

Please sign in to comment.