コード例 #1
0
 public UserService(postgresContext context)
 {
     db = context;
 }
コード例 #2
0
ファイル: UsersController.cs プロジェクト: Larenall/meestoo
 public UsersController(UserService userService, IJwtAuthenticationManager JwtAuthentiocationManager, postgresContext context)
 {
     _userService = userService;
     this.JwtAuthentiocationManager = JwtAuthentiocationManager;
     db = context;
 }