RequiItems.cs 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. using comal.timesheets.CustomControls;
  2. using Comal.Classes;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Text;
  6. namespace comal.timesheets
  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<HoldingsCacheShell> holdingsCache { get; set; }
  13. public static bool HoldingsLoaded { get; set; }
  14. public class HoldingsCacheShell
  15. {
  16. public Guid ID { get; set; }
  17. public Guid ProductID { get; set; }
  18. public Guid LocationID { get; set; }
  19. public string LocationName { get; set; }
  20. public string Units { get; set; }
  21. public Guid JobID { get; set; }
  22. public string JobNumber { get; set; }
  23. public string JobName { get; set; }
  24. public Guid StyleID { get; set; }
  25. public string StyleCode { get; set; }
  26. public string StyleDescription { get; set; }
  27. public string DimensionsUnitSize { get; set; }
  28. public HoldingsCacheShell()
  29. {
  30. ID = Guid.Empty;
  31. ProductID = Guid.Empty;
  32. LocationID = Guid.Empty;
  33. LocationName = "";
  34. Units = "";
  35. DimensionsUnitSize = "";
  36. JobID = Guid.Empty;
  37. JobNumber = "";
  38. JobName = "";
  39. StyleID = Guid.Empty;
  40. StyleCode = "";
  41. StyleDescription = "";
  42. }
  43. }
  44. }
  45. }