RequiItems.cs 481 B

1234567891011121314151617
  1. using Comal.Classes;
  2. using InABox.Core;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. namespace PRS.Mobile
  7. {
  8. public static class RequiItems
  9. {
  10. public static List<StoreRequiItem> NewRequisitionRows { get; set; }
  11. public static List<RequisitionItem> OldRequisitionItems { get; set; }
  12. public static List<StockHoldingShell_Old2> holdingsCache { get; set; }
  13. public static bool HoldingsLoaded { get; set; }
  14. }
  15. }