ProductStyleIntegrationSource.cs 576 B

123456789101112131415161718
  1. using InABox.Core;
  2. using InABox.Integration.Awg;
  3. namespace Comal.Classes
  4. {
  5. [Caption("Integrations")]
  6. public class ProductStyleIntegrationSource : BaseIntegrationSource<ProductStyle,ProductStyleLink>, ILicense<ProductManagementLicense>
  7. {
  8. [EnumLookupEditor(typeof(AwgStyleType), Editable = Editable.Disabled, Visible = Visible.Hidden)]
  9. public AwgStyleType StyleType { get; set; }
  10. [DoubleEditor(Editable = Editable.Disabled, Visible = Visible.Hidden)]
  11. [DoNotPersist]
  12. public double Cost { get; set; }
  13. }
  14. }