public ActionResult ScanJobList(int pageSize = 20) { var model = ScanDataBaseManager.GetScanJob(pageSize); model.ForEach(x => x.CurrentItemCount = ScanDataBaseManager.GetScanJobItem(x.ScanJobId)); return(View(model)); }
public ActionResult ScanJobList(int pageSize = 20) { var model = ScanDataBaseManager.GetScanJob(pageSize); return(View(model)); }