コード例 #1
0
 public UserController(Dal.DataAccess.FileHosterRepoContext context, IJwtAuthenticationManager authenticationManager)
     : base(context, authenticationManager)
 {
 }
コード例 #2
0
 public BaseController(Dal.DataAccess.FileHosterRepoContext context, IJwtAuthenticationManager authenticationManager)
 {
     this.context = context;
     this.authenticationManager = authenticationManager;
     token = new Token(authenticationManager);
 }