Example #1
0
 public RecordTarget(II id)
 {
     using (new ClinicalDocumentDesigner())
     {
         this.PatientRole.Ids.Add(id);
     }
 }
Example #2
0
 public Author(II assignedAuthorId, DateTime authorDate)
 {
     using (new ClinicalDocumentDesigner())
     {
         this.AssignedAuthor.Ids.Add(assignedAuthorId);
         this.Time.Value = ClinicalDocumentFactory.GetDate(authorDate);
     }
 }
Example #3
0
 public Custodian(II organizationId, ON organizationName)
 {
     using (new ClinicalDocumentDesigner())
     {
         this.AssignedCustodian.RepresentedCustodianOrganization.Ids.Add(organizationId);
         this.AssignedCustodian.RepresentedCustodianOrganization.Name = organizationName;
     }
 }
Example #4
0
 public Custodian(II organizationId, string organizationName)
     : this(organizationId, new ON(organizationName))
 {
 }