public ShopController(ApplicationDbContext Context, urunRepo urunRepo, siparisDetayRepo siparisDetayRepo, yorumRepo yorumRepo) { _context = Context; this.urunRepo = urunRepo; this.siparisDetayRepo = siparisDetayRepo; this.yorumRepo = yorumRepo; }
public urunController(ApplicationDbContext context, urunRepo urunRepo, IHostingEnvironment environment) { _context = context; _environment = environment; this.urunRepo = urunRepo; ; }