| 123456789101112131415161718192021 | 
							- using InABox.Core;
 
- namespace Comal.Classes
 
- {
 
-     [UserTracking(typeof(TimeSheet))]
 
-     public class OvertimeRule : Entity, IRemotable, IPersistent, ILicense<TimeManagementLicense>
 
-     {
 
-         [UniqueCodeEditor(Visible = Visible.Default, Editable = Editable.Enabled)]
 
-         [EditorSequence(0)]
 
-         public string Code { get; set; }
 
-         [TextBoxEditor]
 
-         [EditorSequence(1)]
 
-         public string Description { get; set; }
 
-         public override string ToString()
 
-         {
 
-             return string.Format("{0}: {1}", Code, Description);
 
-         }
 
-     }
 
- }
 
 
  |