Example #1
0
 public ShopController(IMasterCategoryRepository mc_Repo, IProductRepository p_Repo, ISpesificCategoryRepository s_Repo, ICategoryRepository c_Repo)
 {
     mcRepo = mc_Repo;
     pRepo  = p_Repo;
     sRepo  = s_Repo;
     cRepo  = c_Repo;
 }
 public PartialController(IMasterCategoryRepository mc_Repo, IProductRepository pr_Repo)
 {
     mcRepo = mc_Repo;
     prRepo = pr_Repo;
 }
Example #3
0
 public HomeController(IMasterCategoryRepository mc_Repo)
 {
     mcRepo = mc_Repo;
 }