Ejemplo n.º 1
0
 public ActionResult ShowAll()
 {
     var vm = new ListIndexView();
     vm.CharityInfos = matchTasks.GetTop(5000);
     vm.IsSubset = false;
     return View("Index", vm);
 }
Ejemplo n.º 2
0
 //
 // GET: /List/
 public ActionResult Index()
 {
     var vm = new ListIndexView();
     vm.CharityInfos = matchTasks.GetTop(50);
     vm.IsSubset = true;
     return View(vm);
 }