コード例 #1
0
 public PaymentSessionService(GameMarketDbContext context, IConfiguration configuration, IAcquiringService acquiringService, IMapper mapper)
 {
     _context          = context;
     _configuration    = configuration;
     _acquiringService = acquiringService;
     _mapper           = mapper;
 }
コード例 #2
0
 public GameService(GameMarketDbContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
コード例 #3
0
 public UserService(GameMarketDbContext context)
 {
     _context = context;
 }