JobZone.cs 511 B

123456789101112131415161718192021222324
  1. namespace Comal.Classes
  2. {
  3. }
  4. //[UserTracking(typeof(Job))]
  5. //public class JobZone : Entity, IJobZone, IRemotable, IPersistent, IOneToMany<Job>
  6. //{
  7. // [UniqueCodeEditor(Visible = Visible.Default, Editable = Editable.Enabled)]
  8. // public string Code { get; set; }
  9. // [TextBoxEditor]
  10. // public string Description { get; set; }
  11. // [NullEditor]
  12. // public JobLink Job { get; set; }
  13. // protected override void Init()
  14. // {
  15. // base.Init();
  16. // Job = new JobLink();
  17. // }
  18. //}