1234567891011121314151617181920212223242526 |
- using System;
- using InABox.Core;
- namespace Comal.Classes
- {
- public class ProductStyleLink : EntityLink<ProductStyle>, IProductStyle
- {
-
- public ProductStyleLink() : this(null)
- {
- }
- public ProductStyleLink(Func<BaseObject>? entity) : base(entity)
- {
- }
-
- [CodePopupEditor(typeof(ProductStyle))]
- public override Guid ID { get; set; }
- [CodeEditor(Visible = Visible.Default, Editable = Editable.Hidden)]
- public string Code { get; set; }
- [TextBoxEditor(Editable = Editable.Hidden)]
- public string Description { get; set; }
- }
- }
|