RequiItems.cs 522 B

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