| ActStatusConceptKey Property |
The concept which describes the current status of the act
Namespace:
SanteDB.Core.Model.Acts
Assembly:
SanteDB.Core.Model (in SanteDB.Core.Model.dll) Version: 2.2.1
Syntax public 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
Type:
NullableGuidImplements
IHasStateStatusConceptKeyRemarks The 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