Beispiel #1
0
 public AccountSvc(
     ILogger <AccountSvc> logger,
     IUserRepo userRepo,
     IUserIdentitySvc userIdentityService,
     IJwtTokenSvc jwtTokenService,
     IWxSvc wxService)
 {
     _logger              = logger;
     _userRepo            = userRepo;
     _userIdentityService = userIdentityService;
     _jwtTokenService     = jwtTokenService;
     _wxService           = wxService;
 }
Beispiel #2
0
 public AccountController(IComponentContext componentContext, IAccountSvc accountService, IUserSvc userService, IWxSvc wxSvc)
 {
     _accountService = accountService;
     _userService    = userService;
     _wxSvc          = wxSvc;
 }
Beispiel #3
0
 public WxController(IWxSvc wxSvc)
 {
     _wxSvc = wxSvc;
 }