コード例 #1
0
ファイル: vmr.cs プロジェクト: GuntherM1466/healthedecisions
 public MotionManagement() {
     this.immobilizationDeviceField = new List<CD>();
     this.targetBodySiteField = new BodySite();
 }
コード例 #2
0
ファイル: vmr.cs プロジェクト: GuntherM1466/healthedecisions
 public ObservationBase() {
     this.interpretationField = new List<CD>();
     this.targetBodySiteField = new BodySite();
 }
コード例 #3
0
ファイル: vmr.cs プロジェクト: GuntherM1466/healthedecisions
 public GoalBase() {
     this.targetGoalValueField = new Value();
     this.targetBodySiteField = new BodySite();
 }
コード例 #4
0
ファイル: vmr.cs プロジェクト: GuntherM1466/healthedecisions
 public SupplyBase() {
     this.targetBodySiteField = new BodySite();
 }
コード例 #5
0
ファイル: vmr.cs プロジェクト: GuntherM1466/healthedecisions
 public ProcedureBase() {
     this.targetBodySiteField = new List<BodySite>();
     this.approachBodySiteField = new BodySite();
 }
コード例 #6
0
ファイル: vmr.cs プロジェクト: GuntherM1466/healthedecisions
 public Specimen() {
     this.collectionSiteField = new BodySite();
 }
コード例 #7
0
ファイル: vmr.cs プロジェクト: GuntherM1466/healthedecisions
 public Dose() {
     this.frequencyField = new Schedule();
     this.targetBodySiteField = new BodySite();
     this.approachBodySiteField = new BodySite();
     this.doseGoalField = new DoseRestriction();
     this.doseRestrictionField = new DoseRestriction();
     this.additionalInstructionsField = new List<CD>();
 }
コード例 #8
0
 public GoalBase() {
     this.targetBodySiteField = new BodySite();
 }
コード例 #9
0
 public ObservationBase() {
     this.targetBodySiteField = new BodySite();
 }
コード例 #10
0
 public SubstanceAdministrationBase() {
     this.targetBodySiteField = new BodySite();
     this.approachBodySiteField = new BodySite();
     this.dosingPeriodField = new IVL_PQ();
     this.deliveryRateField = new IVL_PQ();
     this.doseQuantityField = new IVL_PQ();
     this.substanceField = new AdministrableSubstance();
 }