public PaymentSessionService(GameMarketDbContext context, IConfiguration configuration, IAcquiringService acquiringService, IMapper mapper)
 {
     _context          = context;
     _configuration    = configuration;
     _acquiringService = acquiringService;
     _mapper           = mapper;
 }
 public IndexModel(IAcquiringService acquiringService, IHolderService holderService, AppRepository appRepository)
 {
     _acquiringService = acquiringService;
     _holderService    = holderService;
     _appRepository    = appRepository;
 }