示例#1
0
 public GamesController(IAllGames iallGames, IGamesCategory igamesCategory)
 {
     _allGames      = iallGames;
     _gamesCategory = igamesCategory;
 }
示例#2
0
 public ShopCartController(IAllGames gameRepository, ShopCart shopCart)
 {
     _shopCart       = shopCart;
     _gameRepository = gameRepository;
 }
示例#3
0
 public GamesController(IAllGames iAllGames, IGamesCategory iGamesCat)
 {
     _allGames      = iAllGames;
     _allCategories = iGamesCat;
 }
示例#4
0
 public HomeController(IAllGames iAllGames, IGamesCategory iGamesCategory)
 {
     _allGames      = iAllGames;
     _gamesCategory = iGamesCategory;
 }
示例#5
0
 public ShopCartController(IAllGames gameRep, ShopCart shopCart)
 {
     _gameRep  = gameRep;
     _shopCart = shopCart;
 }
示例#6
0
 public HomeController(IAllGames gameRep)
 {
     _gameRep = gameRep;
 }