12345678910111213141516171819202122 |
- using InABox.Core;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Comal.Classes
- {
- public class StagingSetout : Entity, IPersistent, IRemotable
- {
- [UniqueCodeEditor(Visible = Visible.Default, Editable = Editable.Disabled)]
- public string Number { get; set; }
- [NullEditor]
- public JobLink JobLink { get; set; }
- public SetoutLink Setout { get; set; }
- public StagingSetout()
- {
- JobLink = new JobLink();
- }
- }
- }
|