12345678910111213141516171819202122232425 |
- using InABox.Core;
- namespace Comal.Classes
- {
- [UserTracking("Qualifications & Tickets")]
- public class Qualification : Entity, IRemotable, IPersistent, IQualification, ILicense<HumanResourcesLicense>, IExportable, IImportable,
- IMergeable
- {
- [TextBoxEditor(Visible = Visible.Default)]
- public string Description { get; set; }
- [EnumLookupEditor(typeof(QualificationRenewal), Visible = Visible.Optional)]
- public QualificationRenewal Renewal { get; set; }
- [IntegerEditor(Visible = Visible.Optional)]
- public int Period { get; set; }
- protected override void Init()
- {
- base.Init();
- Period = 0;
- Renewal = QualificationRenewal.Manual;
- }
- }
- }
|