Exemple #1
0
 public AuthenticationController(IOptions <RestPkiConfig> optionsAccessor)
 {
     this.restPkiConfig = optionsAccessor.Value;
 }
Exemple #2
0
 public PadesSignatureController(IHostingEnvironment hostingEnvironment, IOptions <RestPkiConfig> optionsAccessor)
 {
     this.hostingEnvironment = hostingEnvironment;
     this.restPkiConfig      = optionsAccessor.Value;
 }
Exemple #3
0
 public HomeController(IOptions <RestPkiConfig> optionsAccessor)
 {
     this.restPkiConfig = optionsAccessor.Value;
 }