public ActionResult Kategoriler()
        {
            var kategori = _kategoriManagement.GetAll(x => x.Sonlandi == false);

            return(View(kategori));
        }
 public ActionResult UrunEkle()
 {
     ViewBag.Kategoriler = _kategoriManagement.GetAll();
     ViewBag.Markalar    = _markaManagement.GetAll();
     return(View());
 }
 public ActionResult OzellikTipEkle()
 {
     return(View(_kategoriManagement.GetAll()));
 }
Beispiel #4
0
 public ICollection <Kategoriler> GetAll()
 {
     return(_kategoriManagement.GetAll());
 }