예제 #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 UserController(
     IUserManager <IdentityUser, Guid> userManager,
     ILogger <UserController> logger,
     IConfiguration configuration,
     IUserWatchmanPatientService <Guid> userWatchmanPatientService
     )
 {
     this._userManager       = userManager;
     this._logger            = logger;
     this._configuration     = configuration;
     this._userHealthService = userWatchmanPatientService;
 }