StockHolding.cs 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. using System;
  2. using InABox.Core;
  3. using Xamarin.Forms;
  4. namespace PRS.Mobile
  5. {
  6. public class StockHoldingShell_Old : BaseObject
  7. {
  8. public string ID { get; set; }
  9. public Guid ProductID { get; set; }
  10. public string Code { get; set; }
  11. public string Name { get; set; }
  12. public string DisplayUnits { get; set; }
  13. public string Finish { get; set; } //style.description
  14. public string DisplaySize { get; set; }
  15. public double LastRowHeight { get; set; }
  16. public bool ImageVisible { get; set; }
  17. public ImageSource ImageSource { get; set; }
  18. public Guid ImageID { get; set; }
  19. public Color Color { get; set; }
  20. public Guid LocationID { get; set; }
  21. public string LocationName { get; set; }
  22. public string AreaName { get; set; }
  23. public Guid JobID { get; set; }
  24. public string JobName { get; set; }
  25. public string JobNumber { get; set; }
  26. public string DisplayJob { get; set; }
  27. public Guid StyleID { get; set; }
  28. public string StyleCode { get; set; }
  29. public string StyleName { get; set; }
  30. public Guid DimensionsUnitID { get; set; }
  31. public double DimensionsQuantity { get; set; }
  32. public double DimensionsLength { get; set; }
  33. public double DimensionsWidth { get; set; }
  34. public double DimensionsHeight { get; set; }
  35. public double DimensionsWeight { get; set; }
  36. public double DimensionsValue { get; set; }
  37. public string DimensionsUnitSize { get; set; }
  38. public bool DimensionsHasHeight { get; set; }
  39. public bool DimensionsHasLength { get; set; }
  40. public bool DimensionsHasWidth { get; set; }
  41. public bool DimensionsHasWeight { get; set; }
  42. public bool DimensionsHasQuantity { get; set; }
  43. public string DimensionsUnitFormula { get; set; }
  44. public string DimensionsUnitFormat { get; set; }
  45. public string DimensionsUnitCode { get; set; }
  46. public string DimensionsUnitDescription { get; set; }
  47. public double Units { get; set; }
  48. public StockHoldingShell_Old()
  49. {
  50. ID = "";
  51. Code = "";
  52. Name = "";
  53. StyleName = "";
  54. DisplayUnits = "";
  55. Finish = "";
  56. Units = 0.0;
  57. JobID = Guid.Empty;
  58. JobName = "";
  59. JobNumber = "";
  60. DisplayJob = "";
  61. StyleID = Guid.Empty;
  62. StyleCode = "";
  63. ProductID = Guid.Empty;
  64. DisplaySize = "";
  65. LastRowHeight = 0;
  66. ImageVisible = false;
  67. ImageSource = "";
  68. ImageID = Guid.Empty;
  69. Color = Color.Default;
  70. DimensionsUnitID = Guid.Empty;
  71. DimensionsQuantity = 0;
  72. DimensionsLength = 0;
  73. DimensionsWidth = 0;
  74. DimensionsHeight = 0;
  75. DimensionsWeight = 0;
  76. DimensionsValue = 0;
  77. DimensionsUnitSize = "";
  78. DimensionsHasHeight = false;
  79. DimensionsHasLength = false;
  80. DimensionsHasWidth = false;
  81. DimensionsHasWeight = false;
  82. DimensionsHasQuantity = false;
  83. DimensionsUnitFormula = "";
  84. DimensionsUnitFormat = "";
  85. DimensionsUnitCode = "";
  86. DimensionsUnitDescription = "";
  87. }
  88. }
  89. }