Exemple #1
0
 public CentreController(ICentreLogic centreLogic, IValidator <CentreModel> centreValidator, IAccountLogic accountLogic)
 {
     this._centreLogic     = centreLogic;
     this._accountLogic    = accountLogic;
     this._centreValidator = centreValidator;
 }
Exemple #2
0
 public ConsultationController(IConsultationLogic consultationLogic, IPatientLogic patientLogic, ICentreLogic centreLogic)
 {
     this._consultationLogic = consultationLogic;
     this._centreLogic       = centreLogic;
     this._patientLogic      = patientLogic;
 }