示例#1
0
 //
 // GET: /Admin/
 public ActionResult Index()
 {
     var cardService = new CardService();
     var listAll = cardService.ListAll();
     return View("Dump", listAll);
 }