コード例 #1
0
 public WeixinOAuthController(AccountService accountService, IOptions <SenparcWeixinSetting> options, WeixinService weixinService)
 {
     _accountService       = accountService;
     _weixinService        = weixinService;
     _senparcWeixinSetting = options.Value;
 }
コード例 #2
0
ファイル: LoginController.cs プロジェクト: zgmqdl/SCF
 public LoginController(WeixinService weixinService, IQrCodeLoginCache qrCodeLoginCache, AccountService accountService)
 {
     _weixinService       = weixinService;
     _qrCodeLoginCache    = qrCodeLoginCache;
     this._accountService = accountService;
 }