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