public ItemsApiController(Itemservice Itemservice)
 {
     oItemservice = Itemservice;
 }
Esempio n. 2
0
 public ItemsController(Itemservice Items, Categoryservice categories)
 {
     oItemservice     = Items;
     oCategoryservice = categories;
 }
Esempio n. 3
0
 public HomeController(Categoryservice Category, Itemservice Items, Slidersservice Sliders)
 {
     oCategoryservice = Category;
     oItemservice     = Items;
     oSlidersservice  = Sliders;
 }