Esempio n. 1
0
 public HomeController(ICategoryBLL categoryBLL, IProductBLL productBLL, IVideoBLL videoBLL, IOptions <AppSettings> appSetting)
 {
     _categoryBLL = categoryBLL;
     _productBLL  = productBLL;
     _videoBLL    = videoBLL;
     _appSetting  = appSetting;
 }
 public AdminController(ICategoryBLL categoryBLL, IProductBLL productBLL, IVideoBLL videoBLL)
 {
     _categoryBLL = categoryBLL;
     _productBLL  = productBLL;
     _videoBLL    = videoBLL;
 }