IStockWarehouse.cs 253 B

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