Exemplo n.º 1
0
 public Identifier(
     IdentificationScheme scheme,
     string tag,
     TIdentified identified
     ) : base(
         scheme,
         tag)
 {
     Identified = identified;
 }
Exemplo n.º 2
0
 public AutonomousAgentIdentifier(
     IdentificationScheme scheme,
     string tag,
     AutonomousAgent autonomousAgent
     ) : base(
         scheme,
         tag)
 {
     AutonomousAgent = autonomousAgent;
 }
 public GeographicRegionIdentifier(
     IdentificationScheme scheme,
     string tag,
     GeographicRegion geographicRegion
     ) : base(
         scheme,
         tag)
 {
     GeographicRegion = geographicRegion;
 }
Exemplo n.º 4
0
 public OrganisationIdentifier(
     IdentificationScheme scheme,
     string tag,
     Organisation organisation
     ) : base(
         scheme,
         tag,
         organisation)
 {
     Organisation = organisation;
 }