IStockHolding.cs 316 B

12345678910111213
  1. using InABox.Core;
  2. namespace Comal.Classes
  3. {
  4. public interface IStockHolding
  5. {
  6. JobLink Job { get; set; }
  7. StockLocationLink Location { get; set; }
  8. ProductLink Product { get; set; }
  9. ProductStyleLink Style { get; set; }
  10. StockDimensions Dimensions { get; set; }
  11. }
  12. }