StoreRequiItemShell.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. using System;
  2. using Comal.Classes;
  3. using InABox.Core;
  4. using Xamarin.Forms;
  5. namespace PRS.Mobile
  6. {
  7. [DoNotPersist]
  8. public class StoreRequiItemShell : Entity
  9. {
  10. public Guid ProductID { get; set; }
  11. public string ProductCode { get; set; }
  12. public string ProductName { get; set; }
  13. public string LocationName { get; set; }
  14. public double Quantity { get; set; }
  15. public Guid LocationID { get; set; }
  16. public Color BorderColor { get; set; }
  17. public bool IsNotes { get; set; }
  18. public bool IsNotNotes { get; set; }
  19. public string Summary { get; set; }
  20. public DateTime Picked { get; set; }
  21. public Color Colour { get; set; }
  22. public Guid JobID { get; set; }
  23. public Guid StyleID { get; set; }
  24. public StockDimensions Dimensions { get; set; }
  25. public StoreRequiItemShell()
  26. {
  27. ProductID = Guid.Empty;
  28. ProductCode = "";
  29. ProductName = "";
  30. LocationName = "";
  31. Quantity = 0;
  32. ID = Guid.Empty;
  33. LocationID = Guid.Empty;
  34. BorderColor = Color.FromHex("#15C7C1");
  35. IsNotes = false;
  36. IsNotNotes = true;
  37. Picked = DateTime.MinValue;
  38. Colour = Color.Default;
  39. JobID = Guid.Empty;
  40. StyleID = Guid.Empty;
  41. Dimensions = new StockDimensions();
  42. }
  43. }
  44. }