123456789101112131415161718192021222324252627 |
- using Comal.Classes.Entities;
- using InABox.Core;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Comal.Classes
- {
- public class SetoutGroup : Entity, IPersistent, IRemotable, ILicense<ManufacturingLicense>
- {
- [TextBoxEditor(Editable = Editable.Enabled)]
- public string Name { get; set; }
- public JobLink Job { get; set; }
- [Caption("Optimization Document")]
- public DocumentLink OptimizationDocument { get; set; }
- protected override void Init()
- {
- Name = "";
- Job = new JobLink();
- OptimizationDocument = new DocumentLink();
- base.Init();
- }
- }
- }
|