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 GalleryController(RepGallery rep)
 {
     _rep = rep;
 }