123456789101112131415161718192021222324 |
- namespace Comal.Classes
- {
- }
- //[UserTracking(typeof(Job))]
- //public class JobZone : Entity, IJobZone, IRemotable, IPersistent, IOneToMany<Job>
- //{
- // [UniqueCodeEditor(Visible = Visible.Default, Editable = Editable.Enabled)]
- // public string Code { get; set; }
- // [TextBoxEditor]
- // public string Description { get; set; }
- // [NullEditor]
- // public JobLink Job { get; set; }
- // protected override void Init()
- // {
- // base.Init();
- // Job = new JobLink();
- // }
- //}
|