public TreatmentPlanController(ITreatmentPlanRepository treatmentplanRepository)
        {
			this.treatmentplanRepository = treatmentplanRepository;
        }
 public TreatmentConsentPresenter(ITreatmentPlanRepository treatmentPlanRepository, TreatmentPlan treatmentPlan)
 {
     this.treatmentPlanRepository = treatmentPlanRepository;
     this.treatmentPlan           = treatmentPlan;
 }
Пример #3
0
 public TreatmentConsentPresenter getTreatmentConsentPresenter(ITreatmentPlanRepository treatmentPlanRepository,
                                                               TreatmentPlan treatmentPlan)
 {
     return(new TreatmentConsentPresenter(treatmentPlanRepository, treatmentPlan));
 }
 public RecordTreatmentPresenter(IPresenterFactory presenterFactory, ITreatmentPlanRepository treatmentPlanRepository)
 {
     this.treatmentPlanRepository = treatmentPlanRepository;
     this.presenterFactory        = presenterFactory;
 }
Пример #5
0
 public RecordTreatmentPresenter getRecordTreatmentPresenter(IPresenterFactory presenterFactory,
                                                             ITreatmentPlanRepository treatmentPlanRepository)
 {
     return(new RecordTreatmentPresenter(presenterFactory, treatmentPlanRepository));
 }