コード例 #1
0
 public HomeController(
     IUserManager <WatchmanUser, Guid> userManager,
     IWatchmanPatientService <Guid> watchmanPatientService,
     IUserWatchmanPatientService <Guid> userWatchmanPatientService,
     IControlRequestService controlRequestService, IPersonalInformationService <PersonalInfo, Guid> personalService)
 {
     this._userManager            = userManager;
     this._watchmanPatientService = watchmanPatientService;
     this._userHealthService      = userWatchmanPatientService;
     this._controlRequestService  = controlRequestService;
     _personalService             = personalService;
 }
コード例 #2
0
 public ControlRequestController(IControlRequestService controlRequestService)
 {
     _controlRequestService = controlRequestService;
 }