예제 #1
0
 public ReviewService(GameAppDbContext context)
 {
     this.context = context;
 }
 public PostsController(IPostService postService, GameAppDbContext context)
 {
     this.postService = postService;
     this.context     = context;
 }
 public EditProfileModel(UserManager <AppUser> userManager, GameAppDbContext context)
 {
     this.userManager = userManager;
     this.context     = context;
 }
예제 #4
0
 public PostService(GameAppDbContext context)
 {
     this.context = context;
 }
예제 #5
0
 public GamePlatformsController(GameAppDbContext context)
 {
     _context = context;
 }
 public GameProductsController(GameAppDbContext context)
 {
     _context = context;
 }
예제 #7
0
 public GameProductService(GameAppDbContext context, IGameSearchService gameSearchService)
 {
     this.context           = context;
     this.gameSearchService = gameSearchService;
 }
 public CartService(IHttpContextAccessor httpContextAccessor, GameAppDbContext context)
 {
     this.httpContextAccessor = httpContextAccessor;
     this.context             = context;
 }