Ah, yes, that's a confusing thing when you encounter slicing for the first time. The 'admissionperiod' part of the name is just a human display name of that slice of 'supportingInfo'. Filling it in, is just filling in the supportingInfo field, while you adhere to the rules in the definition. Something like this could work:
```
var eob = new ExplanationOfBenefit();
var admissionperiod = new ExplanationOfBenefit.SupportingInformationComponent();
admissionperiod.Timing = new Period(new FhirDateTime("2021-01-15"), new FhirDateTime("2021-01-19"));
eob.SupportingInfo.Add(admissionperiod);
```
Op donderdag 25 februari 2021 om 13:18:11 UTC+1 schreef jineesh M G: