예제 #1
0
 public HomeController(ICategoryBLL categoryBLL, IProductBLL productBLL, IVideoBLL videoBLL, IOptions <AppSettings> appSetting)
 {
     _categoryBLL = categoryBLL;
     _productBLL  = productBLL;
     _videoBLL    = videoBLL;
     _appSetting  = appSetting;
 }
예제 #2
0
 public AdminController(ICategoryBLL categoryBLL, IProductBLL productBLL, IVideoBLL videoBLL)
 {
     _categoryBLL = categoryBLL;
     _productBLL  = productBLL;
     _videoBLL    = videoBLL;
 }