public MenuController(IHostingEnvironment hostingEnvironment)
 {
     _hostingEnvironment = hostingEnvironment;
     _service            = new LoginAccessService();
 }
Ejemplo n.º 2
0
 public LoginAccessController(IOptions <JwtSetting> jwtsetting)
 {
     _jwtsetting = jwtsetting;
     _service    = new LoginAccessService();
 }