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