예제 #1
0
 public ApplicationUserController(ApplicationUserComponent appUC, UserManagerComponent userMC, IMapper mapper, IOptions <AppSettings> appSettings)
 {
     this._appUC       = appUC;
     this._mapper      = mapper;
     this._appSettings = appSettings.Value;
     this._userMC      = userMC;
 }
예제 #2
0
 public UserProfileController(ApplicationUserComponent appUC, IMapper mapper)
 {
     this._appUC  = appUC;
     this._mapper = mapper;
 }