12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- using Comal.Classes;
- using InABox.Core;
- namespace comal.timesheets
- {
- public class StockHoldingShell2 : Entity
- {
-
- public Guid ProductID { get; set; }
- public Guid LocationID { get; set; }
- public string LocationName { get; set; }
- public string Units { get; set; }
- public Guid JobID { get; set; }
- public string JobNumber { get; set; }
- public string JobName { get; set; }
- public Guid StyleID { get; set; }
- public string StyleCode { get; set; }
- public string StyleDescription { get; set; }
- public StockDimensions Dimensions { get; set; }
- public StockHoldingShell2()
- {
- LocationID = Guid.Empty;
- ProductID = Guid.Empty;
- LocationName = "";
- Units = "";
- JobID = Guid.Empty;
- JobNumber = "";
- JobName = "";
- StyleID = Guid.Empty;
- StyleCode = "";
- StyleDescription = "";
- Dimensions = new StockDimensions(() => this);
- }
- }
- }
|