public ShoesController(ShoesService ss)
 {
     _ss = ss;
 }
 public BlogsController(ShoesService bs)
 {
     _bs = bs;
 }
 public CartsController(CartsService cs, ShoesService ss)
 {
     _cs = cs;
     _ss = ss;
 }
Beispiel #4
0
 public ManufacturersController(ManufacturersService ms, ShoesService ss)
 {
     _ms = ms;
     _ss = ss;
 }