Esempio n. 1
0
 public ProfileController(IRegisteredPatientBussiness registeredPatientBussiness, ITokenGenerator tokenGenerator, IPatientBussiness patientBussiness, IAuthenInfo authenInfo, ICommonPatientBussiness commonPatientBussiness)
 {
     this.registeredPatientBussiness = registeredPatientBussiness;
     this.tokenGenerator             = tokenGenerator;
     this.patientBussiness           = patientBussiness;
     this.authenInfo             = authenInfo;
     this.commonPatientBussiness = commonPatientBussiness;
 }
Esempio n. 2
0
 public AuthController(IAuthBusiness authBusiness, ITokenGenerator tokenGenerator, IAuthenInfo authenInfo)
 {
     this.authBusiness   = authBusiness;
     this.tokenGenerator = tokenGenerator;
     this.authenInfo     = authenInfo;
 }
Esempio n. 3
0
 public DevController(ITokenGenerator tokenGenerator, IAuthenInfo authenInfo)
 {
     this.tokenGenerator = tokenGenerator;
     this.authenInfo     = authenInfo;
 }