コード例 #1
0
        public ActionResult Index()
        {
            var service = new SampleService();

            ViewBag.Message = service.GetMessage(1);

            return View();
        }
コード例 #2
0
        public ActionResult Contact()
        {
            var service = new SampleService();

            ViewBag.Message = service.GetMessage(3);

            return View();
        }