public IActionResult Index(string x)
        {
            var _hesap = hesapHareketServis.Get(c => c.HesapId == int.Parse(x));

            editor = editorServis.Get(c => c.Id == _hesap.EditorId);
            return(View(editor));
        }
Esempio n. 2
0
        public IActionResult Index(string x)
        {
            var _hesap = hesapHareketServis.Get(c => c.HesapId == int.Parse(x));

            yazar = yazarServis.Get(c => c.Id == _hesap.YazarId);
            return(View(yazar));
        }