EnsLib.Workflow.TaskRequest with complex object
Hi,
we have a
Our TaskRequest contains an object named Patient with some properties. We´d like to display the contents in the tasks description area. WE´ve created an additional template but have a hard time to access the values of the patient object. Is there any special variable to use here?
best regards,
sebastian
It's hard to answer your question without more details about your class definition, but in general, you'd create an instance of your class, then just use the typical dot-separated syntax. So if your instance was called "MyTask" you should be able to use MyTask.Patient.FirstName to refer to the FirstName property of your patient.
Check WorkflowUI-ngx / WorkflowAPI for customizable rendering.