1234567891011121314151617181920212223242526272829303132333435 |
- using InABox.Core;
- namespace Comal.Classes
- {
- public class ForeignCurrency : Entity, IRemotable, IPersistent, IForeignCurrency, ILicense<CoreLicense>
- {
- [UniqueCodeEditor(Visible = Visible.Default, Editable = Editable.Enabled)]
- [EditorSequence(1)]
- public string Code { get; set; }
-
- [TextBoxEditor]
- [EditorSequence(2)]
- public string Description { get; set; }
-
- [Caption("ISO Code")]
- [TextBoxEditor(Visible = Visible.Optional, Width=150)]
- [EditorSequence(3)]
- public string Identifier { get; set; }
-
- [Caption("Display")]
- [TextBoxEditor(Width=150)]
- [EditorSequence(4)]
- public string Symbol { get; set; }
-
- [Caption("Rate")]
- [DoubleEditor(Digits=4)]
- [EditorSequence(4)]
- public double ExchangeRate { get; set; }
-
- [CheckBoxEditor(Visible=Visible.Hidden, Editable = Editable.Enabled)]
- [EditorSequence(5)]
- public bool Active { get; set; }
-
- }
- }
|