Click or drag to resize

ActParticipation Class

Associates an entity which participates in an act
Inheritance Hierarchy
SystemObject
  SanteDB.Core.ModelIdentifiedData
    SanteDB.Core.ModelAssociationAct
      SanteDB.Core.ModelVersionedAssociationAct
        SanteDB.Core.Model.ActsActParticipation

Namespace:  SanteDB.Core.Model.Acts
Assembly:  SanteDB.Core.Model (in SanteDB.Core.Model.dll) Version: 2.2.1
Syntax
public class ActParticipation : VersionedAssociation<Act>, 
	ITargetedVersionedExtension, IVersionedAssociation, ISimpleAssociation, IIdentifiedEntity, ITargetedAssociation

The ActParticipation type exposes the following members.

Constructors
Properties
  NameDescription
Public propertyCode exampleAct
Delay load property for ActKey
Public propertyActKey
Identifies the Act to which the participation belongs
Public propertyBatchOperation
Gets or sets the operation
(Inherited from IdentifiedData.)
Public propertyClassification
Gets or sets the an additional (sub-type) of the relationship
Public propertyClassificationKey
Identifies the classification of the participation.
Public propertyEffectiveVersionSequenceId
Gets or sets the version sequence of the source object when this assoication became active
(Inherited from VersionedAssociationTSourceType.)
Public propertyIsDelayLoadEnabled
True if the class is currently loading associations when accessed
(Inherited from IdentifiedData.)
Public propertyKey
Gets or sets the primary identifying UUID of this object
(Inherited from IdentifiedData.)
Public propertyLoadState
Gets or sets whether the object was partial loaded
(Inherited from IdentifiedData.)
Public propertyModifiedOn
Get the modification date
(Inherited from AssociationTSourceType.)
Public propertyObsoleteVersionSequenceId
Gets or sets the sequence identifier of the source when this association is no longer active
(Inherited from VersionedAssociationTSourceType.)
Public propertyCode exampleParticipationRole
Delay load point for ParticipationRoleKey
Public propertyParticipationRoleKey
Identifies the role which the PlayerEntityKey performs in the ActKey
Public propertyCode examplePlayerEntity
The delay-load property for PlayerEntityKey
Public propertyPlayerEntityKey
Identifies the entity which played the ParticipationRoleKey
Public propertyQuantity
Identifies the number of PlayerEntityKey which participates in ActKey
Public propertySourceEntity
The entity that this relationship targets
(Inherited from AssociationTSourceType.)
Public propertySourceEntityKey
Gets or sets the source entity's key (where the relationship is FROM)
(Inherited from AssociationTSourceType.)
Public propertySourceType
Gets the source type
(Inherited from AssociationTSourceType.)
Public propertyTag
Gets a tag which changes whenever the object is updated
(Inherited from IdentifiedData.)
Public propertyType
Gets the type registration of this object
(Inherited from IdentifiedData.)
Top
Methods
  NameDescription
Public methodAddAnnotation
Add an annotated object
(Inherited from IdentifiedData.)
Public methodClone
Clone this object
(Inherited from IdentifiedData.)
Public methodCopyAnnotations
Copy annotations from another resource
(Inherited from IdentifiedData.)
Public methodDeepCopy
Provide a deep copy of the specified data
(Inherited from IdentifiedData.)
Protected methodDelayLoadTEntity
Get associated entity
(Inherited from IdentifiedData.)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetAnnotationsT
Get annotations of specified T
(Inherited from IdentifiedData.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetLocked
Clone the specified data
(Inherited from IdentifiedData.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodIsEmpty
Determines w
(Overrides IdentifiedDataIsEmpty.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodRemoveAnnotation
Remove annotation
(Inherited from IdentifiedData.)
Public methodSemanticEquals
Determine equality
(Overrides VersionedAssociationTSourceTypeSemanticEquals(Object).)
Public methodShouldSerializeActKey
Should serialize act key
Public methodShouldSerializeBatchOperation
Should serialize batch operation
(Inherited from IdentifiedData.)
Public methodShouldSerializeEffectiveVersionSequenceId
Should serialize obsolete
(Inherited from VersionedAssociationTSourceType.)
Public methodShouldSerializeKey
True if key should be serialized
(Inherited from IdentifiedData.)
Public methodShouldSerializeModifiedOn
Never serialize modified on
(Inherited from IdentifiedData.)
Public methodShouldSerializeObsoleteVersionSequenceId
Should serialize obsolete
(Inherited from VersionedAssociationTSourceType.)
Public methodShouldSerializeQuantity
Should serialize quantity
Public methodShouldSerializeSourceEntityKey
Don't serialize source entity
(Overrides AssociationTSourceTypeShouldSerializeSourceEntityKey.)
Public methodToDisplay
To display value
(Inherited from IdentifiedData.)
Public methodToString
Represent as string
(Overrides ObjectToString.)
Top
Fields
  NameDescription
Protected fieldm_annotations
A list of custom tags which were added to this object
(Inherited from IdentifiedData.)
Top
Extension Methods
  NameDescription
Public Extension MethodConvertTReturn
The purpose of this method is to convert object me to TReturn. Why? Because if you have an instance of Act that actually needs to be a SubstanceAdministration we can't just cast so we have to copy.
(Defined by ExtensionMethods.)
Public Extension MethodCreateExtensions
Runs all registered extensions on the object
(Defined by ExtensionUtil.)
Public Extension MethodGetInstanceOfTDomain
Gets an instance of TDomain from me
(Defined by ModelExtensions.)
Public Extension MethodLoadCollectionTReturn
Delay load property
(Defined by ExtensionMethods.)
Public Extension MethodLoadProperty(String, Boolean)Overloaded.
Delay load property
(Defined by ExtensionMethods.)
Public Extension MethodLoadPropertyTReturn(String, Boolean)Overloaded.
Delay load property
(Defined by ExtensionMethods.)
Public Extension MethodTryGetExisting
Try get by classifier
(Defined by ModelExtensions.)
Public Extension MethodUpdateParentKeys (Defined by ModelExtensions.)
Public Extension MethodWasLoaded
Returns true if the property has been loaded
(Defined by ExtensionMethods.)
Top
Remarks

An act participation instance is used to link an Entity entity instance to an Act act instance. It is said that the player (PlayerEntityKey) participates in the act (ActKey) in a particular role (ParticipationRoleKey).

Act participations can also be quantified. For example, if 100 doses of a particular material (ManufacturedMaterial) were consumed as part of an act, then the quantity would be 100.

See Also