IStockLocation.cs 253 B

1234567891011121314
  1. using InABox.Core;
  2. namespace Comal.Classes
  3. {
  4. public interface IStockLocation : IEntity
  5. {
  6. string Code { get; set; }
  7. string Description { get; set; }
  8. JobLink Job { get; set; }
  9. bool Active { get; set; }
  10. }
  11. }