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