コード例 #1
0
 public AuthenticationProvider(AccountService accountService)
 {
     _accountService = accountService;
 }
コード例 #2
0
ファイル: AccountController.cs プロジェクト: luciansr/musupr
 public AccountController(AccountService accountService, ReCaptchaService reCaptchaService)
 {
     _accountService = accountService;
     _reCaptchaService = reCaptchaService;
 }