Exemple #1
0
        public IActionResult Index(string sort)
        {
            int          sessionKisiId = HttpContext.Session.GetInt32("kullaniciid").Value;
            List <Proje> projes        = _projeService.Select(new Proje()
            {
                Olusturankisi = sessionKisiId
            });

            return(View(new GenericIndexDto <Proje>(projes, sort)));
        }