Beispiel #1
0
 public TestController(IJWTAuthentication jwtAuthenticationManager, IAcountService acountService)
 {
     this.jwtAuthenticationManager = jwtAuthenticationManager;
     this._acountService           = acountService;
 }
 public LoginController(IJWTAuthentication jwtAuthenticationManager, IAcountService acountService, IUserService userService)
 {
     this._acountService            = acountService;
     this._jwtAuthenticationManager = jwtAuthenticationManager;
     this._userService = userService;
 }
Beispiel #3
0
 public EnterPriseLoginController(IJWTAuthentication jwtAuthenticationManager, IAcountService acountService, IEnterpriseService enterpriseService)
 {
     this._acountService            = acountService;
     this._jwtAuthenticationManager = jwtAuthenticationManager;
     this._enterpriseService        = enterpriseService;
 }