| IConceptRepositoryServiceImplies Method |
Returns a value which indicates whether concept
a implies concept
b through
a
ConceptRelationship indicating the two are the same
Namespace:
SanteDB.Core.Services
Assembly:
SanteDB.Core.Api (in SanteDB.Core.Api.dll) Version: 3.0.481-alpha
Syntax bool Implies(
Concept a,
Concept b
)
Function Implies (
a As Concept,
b As Concept
) As Boolean
bool Implies(
Concept^ a,
Concept^ b
)
abstract Implies :
a : Concept *
b : Concept -> bool
Parameters
- a
- Type: SanteDB.Core.Model.DataTypesConcept
The concept which implication is being tested - b
- Type: SanteDB.Core.Model.DataTypesConcept
The second concept for which implication is being tested
Return Value
Type:
BooleanReturns true if the first concept implies the second concept.
See Also