Пример #1
0
 public TreatmentPathwayGoalDTO(TreatmentPathwayGoal source)
     : base(source)
 {
     TreatmentPathwayGoalID = source.TreatmentPathwayGoalID;
     Name = source.Name;
     TreatmentPathwayID = source.TreatmentPathwayID;
 }
 public GoalAggregateDTO(TreatmentPathwayGoal source, List <ActionStepAggregateDTO> actionSteps)
 {
     GoalID      = source.TreatmentPathwayGoalID;
     Name        = source.Name;
     ActionSteps = actionSteps;
 }