Exemple #1
0
 public UserService(postgresContext context)
 {
     db = context;
 }
Exemple #2
0
 public UsersController(UserService userService, IJwtAuthenticationManager JwtAuthentiocationManager, postgresContext context)
 {
     _userService = userService;
     this.JwtAuthentiocationManager = JwtAuthentiocationManager;
     db = context;
 }