using InABox.Core; namespace Comal.Classes { public interface IStockArea : IEntity { string Code { get; set; } string Description { get; set; } StockWarehouseLink Warehouse { get; set; } } }