Esempio n. 1
0
 public ProcedureSummary(EntityRef rpRef, EntityRef orderRef, ProcedureTypeSummary type, EnumValueInfo laterality, bool portable)
 {
     this.ProcedureRef = rpRef;
     this.OrderRef     = orderRef;
     this.Type         = type;
     this.Laterality   = laterality;
     this.Portable     = portable;
 }
 public ProcedureTypeDetail(
     EntityRef entityRef,
     string id,
     string name,
     ProcedureTypeSummary baseType,
     string planXml,
     int defaultDuration,
     bool deactivated)
 {
     this.ProcedureTypeRef = entityRef;
     this.Id                  = id;
     this.Name                = name;
     this.BaseType            = baseType;
     this.CustomProcedurePlan = true;
     this.PlanXml             = planXml;
     this.DefaultDuration     = defaultDuration;
     this.Deactivated         = deactivated;
 }