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));
        }