public List <ShirtInfo> getUndoneItemsByType() { DashQueries db = new DashQueries(); int addDays = 0; List <ShirtInfo> allNotDone = new List <ShirtInfo>(); allNotDone.AddRange(db.getItemCount("Shirts", addDays)); allNotDone.AddRange(db.getItemCount("tops", addDays)); allNotDone.AddRange(db.getItemCount("bottoms", addDays)); allNotDone.AddRange(db.getItemCount("Household", addDays)); return(allNotDone); }
void GetResults() { shirtsNotDone = dal.getItemCount("Shirts", addDays); topsNotDone = dal.getItemCount("tops", addDays); bottomsNotDone = dal.getItemCount("bottoms", addDays); houseHolds = dal.getItemCount("Household", addDays); missingorders = dal.FindMissingOrders("test"); cprInfo = dal.getCPRCounts(); missingOnrrack = dal.OrdersLostOnRacktoMissingRackLocation(); }