| 12345678910111213141516171819 |
- using InABox.Core;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Comal.Classes
- {
- public class Scan : Entity, IRemotable, IPersistent
- {
- public DocumentLink Document { get; set; }
- protected override void Init()
- {
- base.Init();
- Document = new DocumentLink();
- }
- }
- }
|