public CategoriesController()
 {
     this._categoriesbl = new CategoriesBL();
 }
 public HomeController()
 {
     this._categoriesbl = new CategoriesBL();
     this._productsbl   = new ProductsBL();
 }
 public CategoriesUI(ICategoriesBL ICategoriesBL)
 {
     _ICategoriesBL = ICategoriesBL;
 }
 public CategoriesController(ICategoriesBL CategoriesBL)
 {
     _CategoriesBL = CategoriesBL;
 }