コード例 #1
0
 public UserManagmentController(IUserManagementApiService userManagementApiService, IMapper mapper, IEmailService emailService, IFilterService filterService)
 {
     _userManagementApiService = userManagementApiService;
     _mapper        = mapper;
     _emailService  = emailService;
     _filterService = filterService;
 }
コード例 #2
0
 public AccountController(IUserManager userManager, IEmailService emailService, IMapper mapper,
                          IUserManagementApiService userManagementService)
 {
     _userManager           = userManager;
     _emailService          = emailService;
     _mapper                = mapper;
     _userManagementService = userManagementService;
 }