IJobMaterial.cs 283 B

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