private void CheckTranslations(IndustrialClass source, VmOpenApiFintoItemVersionBase target)
 {
     target.Code.Should().Be(source.Code);
     target.Name.First().Value.Should().Be(source.Label);
     target.OntologyType.Should().Be(source.OntologyType);
     target.Uri.Should().Be(source.Uri);
 }
Exemplo n.º 2
0
 private void CheckTranslations(string source, IndustrialClass target)
 {
     target.Uri.Should().Be(source);
 }