コード例 #1
0
ファイル: MesajController.cs プロジェクト: mslmakyrk/Web-Chat
        public ActionResult Listele()
        {
            ViewModel vm = new ViewModel();

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