コード例 #1
0
 public UserController(UserManager <ApplicationUser> userManager, ILogger <UserController> logger,
                       IEmailSender emailSender, SignInManager <ApplicationUser> signInManager, RoleManager <IdentityRole> roleMgr, IProfileService profileService, IEnrollmentService enrollmentService, IProfileMatchService profileMatchService, ICoupleScreeningService coupleScreeningService, IClinicianService clinicianService, IEvaluationService evaluationService, IEmergencyContactService emergencyContactService, IWebHostEnvironment environment)
 {
     _userManager             = userManager;
     _logger                  = logger;
     _emailSender             = emailSender;
     _signInManager           = signInManager;
     roleManager              = roleMgr;
     _profileService          = profileService;
     _enrollmentService       = enrollmentService;
     _profileMatchService     = profileMatchService;
     _coupleScreeningService  = coupleScreeningService;
     _clinicianService        = clinicianService;
     _evaluationService       = evaluationService;
     _emergencyContactService = emergencyContactService;
     _environment             = environment;
 }
コード例 #2
0
 public EmergencyContactRuleEngine(IEmergencyContactService emergencyContactService)
 {
     this.emergencyContactService = emergencyContactService;
 }
コード例 #3
0
 public EmergencyContactsController(IEmergencyContactService emergencyContactService, IMapper mapper)
 {
     _emergencyContactService = emergencyContactService;
     _mapper = mapper;
 }