IStockArea.cs 230 B

1234567891011
  1. using InABox.Core;
  2. namespace Comal.Classes
  3. {
  4. public interface IStockArea : IEntity
  5. {
  6. string Code { get; set; }
  7. string Description { get; set; }
  8. StockWarehouseLink Warehouse { get; set; }
  9. }
  10. }