示例#1
0
 public PatientsController(
     IDoctorPatientService patients,
     RoleManager <IdentityRole> roleManager,
     UserManager <User> userManager)
 {
     this.patients    = patients;
     this.roleManager = roleManager;
     this.userManager = userManager;
 }
示例#2
0
 public MedicalSheetController(
     IDoctorPatientService patients,
     RoleManager <IdentityRole> roleManager,
     UserManager <User> userManager,
     IMedicalSheetService medicalSheets)
 {
     this.patients      = patients;
     this.roleManager   = roleManager;
     this.userManager   = userManager;
     this.medicalSheets = medicalSheets;
 }
 public DoctorBookingController(IDoctorPatientService ause)
 {
     this.ause = ause;
 }
 public DoctorPatientController(IDoctorPatientService doctorPatientService)
 {
     _doctorPatientService = doctorPatientService;
 }