Esempio n. 1
0
 public MobileNavViewComponent(IGamePlatformRepository gp_repo,
                               ICommon_Name_UrlRepository common_repo,
                               ICategoryRepository cat_repo,
                               IGenereRepository gr_repo)
 {
     _gp_repo     = gp_repo;
     _cat_repo    = cat_repo;
     _gr_repo     = gr_repo;
     _common_repo = common_repo;
 }
 public PlatformViewComponent(IGamePlatformRepository gp_repo,
                              ICommon_Name_UrlRepository common_repo,
                              ICategoryRepository cat_repo,
                              IGenereRepository gr_repo,
                              IFeatureLinkRepository fea_repo)
 {
     _gp_repo     = gp_repo;
     _cat_repo    = cat_repo;
     _gr_repo     = gr_repo;
     _common_repo = common_repo;
     _fea_repo    = fea_repo;
 }
 public ProductsController(
     IGamePlatformRepository gp_repo,
     IGenereRepository gr_repo,
     IImageRepository img_repo,
     IGameRepository game_repo,
     IPageRepository page_repo,
     IProductRepository prod_repo)
 {
     _gp_repo   = gp_repo;
     _gr_repo   = gr_repo;
     _img_repo  = img_repo;
     _game_repo = game_repo;
     _page_repo = page_repo;
     _prod_repo = prod_repo;
 }
Esempio n. 4
0
 public GenreController(IGenereRepository genre, IMapper mapper)
 {
     _genre  = genre;
     _mapper = mapper;
 }
 public GenereViewComponent(IGenereRepository repo)
 {
     _repo = repo;
 }