Exemple #1
0
 public HomeController(IHomePageRepository homePageRepo, IProductRepository productRepo, IStatusRepository statusRepo, ICategoryRepository categoryRepo)
 {
     _homePageRepo = homePageRepo;
     _productRepo  = productRepo;
     _statusRepo   = statusRepo;
     _categoryRepo = categoryRepo;
 }
Exemple #2
0
 public HomePageController(IMapper mapper, IHomePageRepository homePageRepo)
 {
     _mapper       = mapper;
     _homePageRepo = homePageRepo;
 }
Exemple #3
0
 public HomePageController(IHomePageRepository homePageRepository)
 {
     _homePageRepository = homePageRepository;
 }