Ejemplo n.º 1
0
 public CategoriesController()
 {
     this._categoriesbl = new CategoriesBL();
 }
Ejemplo n.º 2
0
 public HomeController()
 {
     this._categoriesbl = new CategoriesBL();
     this._productsbl   = new ProductsBL();
 }
Ejemplo n.º 3
0
 public CategoriesUI(ICategoriesBL ICategoriesBL)
 {
     _ICategoriesBL = ICategoriesBL;
 }
 public CategoriesController(ICategoriesBL CategoriesBL)
 {
     _CategoriesBL = CategoriesBL;
 }