StockHoldingShell2.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. using System;
  2. using Comal.Classes;
  3. using InABox.Core;
  4. namespace comal.timesheets
  5. {
  6. public class StockHoldingShell2 : Entity
  7. {
  8. public Guid ProductID { get; set; }
  9. public Guid LocationID { get; set; }
  10. public string LocationName { get; set; }
  11. public string Units { get; set; }
  12. public Guid JobID { get; set; }
  13. public string JobNumber { get; set; }
  14. public string JobName { get; set; }
  15. public Guid StyleID { get; set; }
  16. public string StyleCode { get; set; }
  17. public string StyleDescription { get; set; }
  18. public StockDimensions Dimensions { get; set; }
  19. public StockHoldingShell2()
  20. {
  21. LocationID = Guid.Empty;
  22. ProductID = Guid.Empty;
  23. LocationName = "";
  24. Units = "";
  25. JobID = Guid.Empty;
  26. JobNumber = "";
  27. JobName = "";
  28. StyleID = Guid.Empty;
  29. StyleCode = "";
  30. StyleDescription = "";
  31. Dimensions = new StockDimensions(() => this);
  32. }
  33. }
  34. }