Exemple #1
0
 public UserController(IUserService userService, IOptions <AuthencationSetting> authencationSetting, IMapper mapper, WebHpShopDbContext dbcontext)
 {
     _userService           = userService;
     _authenticationSetting = authencationSetting.Value;
     _mapper    = mapper;
     _dbcontext = dbcontext;
 }
Exemple #2
0
 public UserController(IUserService userService, IOptions <AuthencationSetting> authencationSetting, IMapper mapper)
 {
     _userService         = userService;
     _authencationSetting = authencationSetting.Value;
     _mapper = mapper;
 }