public PayAuthController(
     [NotNull] IPayAuthService payAuthService,
     [NotNull] ILogFactory logFactory)
 {
     _payAuthService = payAuthService ?? throw new ArgumentNullException(nameof(payAuthService));
     _log            = logFactory.CreateLog(this);
 }
예제 #2
0
 public GenerateRsaKeysController(
     [NotNull] ISecurityHelper securityHelper,
     [NotNull] IPayAuthService payAuthService,
     [NotNull] ILogFactory logFactory)
 {
     _securityHelper = securityHelper ?? throw new ArgumentNullException(nameof(securityHelper));
     _payAuthService = payAuthService ?? throw new ArgumentNullException(nameof(payAuthService));
     _log            = logFactory.CreateLog(this);
 }
 public RegisterController(
     [NotNull] IPayAuthService payAuthService)
 {
     _payAuthService = payAuthService ?? throw new ArgumentNullException(nameof(payAuthService));
 }