コード例 #1
0
ファイル: HomeController.cs プロジェクト: rymeri/mvctutorials
        public ActionResult ViewCity(string id)
        {
            DbServiceClient client = new DbServiceClient();

            return View(client.GetAddress("Bothell").ToList());
        }