 | ActStatusConceptKey Property |
The concept which describes the current status of the act
Namespace: SanteDB.Core.Model.ActsAssembly: SanteDB.Core.Model (in SanteDB.Core.Model.dll) Version: 3.0.2081-alpha+0a330d5f5a5d3cb3e6e945ef530e94ac5671b49c
Syntaxpublic Guid? StatusConceptKey { get; set; }Public Property StatusConceptKey As Guid?
Get
Set
public:
virtual property Nullable<Guid> StatusConceptKey {
Nullable<Guid> get () sealed;
void set (Nullable<Guid> value) sealed;
}abstract StatusConceptKey : Nullable<Guid> with get, set
override StatusConceptKey : Nullable<Guid> with get, set
Property Value
NullableGuidImplements
IHasStateStatusConceptKey
RemarksThe status concepts for an act allow for a basic state machine to be represented in SanteDB. The state machine for acts in SanteDB comprise of the
following codes (defined in StatusKeys):
- New – The ACT has just newly been created (through an automated process, care plan, etc.) and has not been reviewed by a user or other process
- Active – The ACT is currently in progress. This means that the ACT is still being actioned upon
- Complete – The ACT or action described by the act has been completed
- Obsolete – The ACT did happen, or did accurately describe an event, however the information in that ACT is no longer valid
- Nullified – The ACT did not happen, and was created in error
See Also