public ProductsController(ProductModel model, RepProducts rep, ETicaretContext db, RepGallery repglr, RepCategories repCat)
 {
     _rep    = rep;
     _model  = model;
     _db     = db;
     _repglr = repglr;
     _repcat = repCat;
 }
 public GalleryController(RepProducts reppro, RepGallery rep, ETicaretContext db, ProductModel model, RepCategories repcat, GalleryModel modelglr)
 {
     _rep      = rep;
     _db       = db;
     _model    = model;
     _repcat   = repcat;
     _reppro   = reppro;
     _modelglr = modelglr;
 }
 public ProductsController(RepProducts repProducts)
 {
     _repProducts = repProducts;
 }
Exemple #4
0
 public ProductsController(RepProducts rep)
 {
     _rep = rep;
 }