예제 #1
0
 public ModalitySummary(EntityRef modalityRef, string id, string name, FacilitySummary facility, string aeTitle, EnumValueInfo dicomModality, bool deactivated)
 {
     this.ModalityRef   = modalityRef;
     this.Id            = id;
     this.Name          = name;
     this.Facility      = facility;
     this.AETitle       = aeTitle;
     this.DicomModality = dicomModality;
     this.Deactivated   = deactivated;
 }
 public CompositeIdentifierDetail(string id, EnumValueInfo assigningAuthority)
 {
     this.Id = id;
     this.AssigningAuthority = assigningAuthority;
 }
예제 #3
0
 public ResultRecipientDetail(ExternalPractitionerSummary practitioner, ExternalPractitionerContactPointDetail contactPoint, EnumValueInfo preferredCommunicationMode)
 {
     this.Practitioner = practitioner;
     this.ContactPoint = contactPoint;
     this.PreferredCommunicationMode = preferredCommunicationMode;
 }
예제 #4
0
 public ProcedureTypeGroupSummary(EntityRef entityRef, string name, string description, EnumValueInfo category)
 {
     ProcedureTypeGroupRef = entityRef;
     Name        = name;
     Description = description;
     Category    = category;
 }
 public PatientNoteCategorySummary(EntityRef noteCategoryRef, string name, string description, EnumValueInfo severity, bool deactivated)
 {
     this.NoteCategoryRef = noteCategoryRef;
     this.Name            = name;
     this.Description     = description;
     this.Severity        = severity;
     this.Deactivated     = deactivated;
 }
예제 #6
0
 public FacilitySummary(EntityRef facilityRef, string code, string name, string description, EnumValueInfo informationAuthority, bool deactivated)
 {
     this.FacilityRef          = facilityRef;
     this.Code                 = code;
     this.Name                 = name;
     this.Description          = description;
     this.InformationAuthority = informationAuthority;
     this.Deactivated          = deactivated;
 }
예제 #7
0
 public ContactPersonDetail(EnumValueInfo type, string name, string address, string homePhoneNumber, string businessPhoneNumber, EnumValueInfo relationship)
 {
     this.Type                = type;
     this.Name                = name;
     this.Address             = address;
     this.HomePhoneNumber     = homePhoneNumber;
     this.BusinessPhoneNumber = businessPhoneNumber;
     this.Relationship        = relationship;
 }