public ActionResult Listele()
        {
            ViewModel vm = new ViewModel();

            vm.Mesaj     = msgRepo.GetAll().ToList();
            vm.Kullanici = klnRepo.GetAll().ToList();
            return(View(vm));
        }
Exemple #2
0
 public ActionResult Listele()
 {
     return(View(_kullaniciRepository.GetAll().ToList()));
 }