コード例 #1
0
ファイル: BankController.cs プロジェクト: GSInfrrd/POC
        // GET: Bank
        public ActionResult Index()
        {
            var res = _bankContext.GetAll();

            return(View(res));
        }