- using InABox.Core;
- namespace Comal.Classes
- {
- public interface IStockHolding
- {
- JobLink Job { get; set; }
- StockLocationLink Location { get; set; }
- ProductLink Product { get; set; }
- ProductStyleLink Style { get; set; }
- StockDimensions Dimensions { get; set; }
- }
- }
|