Beispiel #1
0
 public CartController(TransacionRepository transacionRepository,
                       PayService payService,
                       AccountGameRepository accountGameRepository)
 {
     _transacionRepository  = transacionRepository;
     _payService            = payService;
     _accountGameRepository = accountGameRepository;
 }
Beispiel #2
0
 public PaymentController(TransacionRepository transacionRepository,
                          PayService payService,
                          UserAccountGameRepository userAccountGameRepository,
                          AccountGameRepository accountGameRepository)
 {
     _transacionRepository      = transacionRepository;
     _payService                = payService;
     _userAccountGameRepository = userAccountGameRepository;
     _accountGameRepository     = accountGameRepository;
 }
Beispiel #3
0
 public AccountGameController(AccountGameRepository accountGameRepository,
                              GameRepository gameRepository)
 {
     _accountGameRepository = accountGameRepository;
     _gameRepository        = gameRepository;
 }
Beispiel #4
0
 public HomeController(AccountGameRepository accountGameRepository)
 {
     _accountGameRepository = accountGameRepository;
 }
Beispiel #5
0
 public UserController(AccountGameRepository accountGameRepository)
 {
     _accountGameRepository = accountGameRepository;
 }