 | ActClassConceptKey Property |
The classification key of the activity
Namespace: SanteDB.Core.Model.ActsAssembly: SanteDB.Core.Model (in SanteDB.Core.Model.dll) Version: 3.0.2081-alpha+0a330d5f5a5d3cb3e6e945ef530e94ac5671b49c
Syntaxpublic Guid? ClassConceptKey { get; set; }Public Property ClassConceptKey As Guid?
Get
Set
public:
virtual property Nullable<Guid> ClassConceptKey {
Nullable<Guid> get () sealed;
void set (Nullable<Guid> value) sealed;
}abstract ClassConceptKey : Nullable<Guid> with get, set
override ClassConceptKey : Nullable<Guid> with get, set
Property Value
NullableGuidImplements
IHasClassConceptClassConceptKey
RemarksThe classification concept is used to dictate the overall structure and properties of the activity. The act loader
in SanteDB will load the appropriate class instance of the act using this information. For example, calling Get() on
an act which is a SubstanceAdministration will result in a SubstanceAdministration instance being loaded.
Class concepts in SanteDB dictate the major classification of the object, for implementation specific or extended
classifications (or sub-types) it is recommended that implementers use the TypeConceptKey property.
See Also