コード例 #1
0
ファイル: AccountController.cs プロジェクト: x3r/AMS
 public AccountController(AccountService accountService, User user, EditAccountModel editAccountModel, DoctorService doctorService)
 {
     _accountService = accountService;
     _user = user;
     _doctorService = doctorService;
     _editAccountModel = editAccountModel;
 }
コード例 #2
0
ファイル: PatientController.cs プロジェクト: x3r/AMS
 public PatientController(PatientService patientService, AccountService accountService)
 {
     _patientService = patientService;
     _accountService = accountService;
 }