示例#1
0
 public TreatmentPathwayGoalActionStepDTO(TreatmentPathwayGoalActionStep source)
 {
     TreatmentPathwayGoalActionStepID = source.TreatmentPathwayGoalActionStepID;
     TreatmentPathwayGoalID           = source.TreatmentPathwayGoalID;
     ActionStep      = source.ActionStep;
     ParentProgramId = source.ParentProgramId;
 }
示例#2
0
 public ActionStepAggregateDTO(TreatmentPathwayGoalActionStep treatmentPathwayGoalActionStep, ParentProgram parentProgram, List <Program> programInstances, List <ProgramInstanceLookupDTO> programInstanceLookups, List <ComponentDTO> programComponents, bool isRecommendedProgram, bool isAssigned = false)
 {
     TreatmentPathwayGoalActionStep = treatmentPathwayGoalActionStep;
     Program                = parentProgram;
     ProgramInstances       = programInstances;
     ProgramInstanceLookups = programInstanceLookups;
     AgencySettings         = parentProgram.AgencySettings;
     ProgramComponents      = programComponents;
     IsRecommendedProgram   = isRecommendedProgram;
     IsAssigned             = isAssigned;
 }