Skip to content

What is the intended use of AllergyIntoleranceVerificationStatusCodes and AllergyIntoleranceClinicalStatusCodes? #2011

Discussion options

You must be logged in to vote

Hi @Sir-Baconn,

Thanks for your interest in our SDK.

You can use the enum AllergyIntoleranceVerificationStatusCodes to populate a CodeableConcept:

            var enteredInErrorCoding = new Coding(
                AllergyIntoleranceVerificationStatusCodes.EnteredInError.GetSystem(),
                AllergyIntoleranceVerificationStatusCodes.EnteredInError.GetLiteral()
                );

            var allergyIntolerance = new AllergyIntolerance();
            allergyIntolerance.VerificationStatus = new CodeableConcept() { Coding = new List<Coding> { enteredInErrorCoding } };

I hope I gave you enough inspiration to continue.

Marco

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by Sir-Baconn
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants