ProductStyleLink.cs 644 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using InABox.Core;
  3. namespace Comal.Classes
  4. {
  5. public class ProductStyleLink : EntityLink<ProductStyle>, IProductStyle
  6. {
  7. public ProductStyleLink() : this(null)
  8. {
  9. }
  10. public ProductStyleLink(Func<BaseObject>? entity) : base(entity)
  11. {
  12. }
  13. [CodePopupEditor(typeof(ProductStyle))]
  14. public override Guid ID { get; set; }
  15. [CodeEditor(Visible = Visible.Default, Editable = Editable.Hidden)]
  16. public string Code { get; set; }
  17. [TextBoxEditor(Editable = Editable.Hidden)]
  18. public string Description { get; set; }
  19. }
  20. }