1234567891011 |
- using InABox.Core;
- namespace Comal.Classes
- {
- public class JobForm : EntityForm<Job, JobLink, JobForm>, IDigitalForm<Job>, ILicense<ProjectManagementLicense>
- {
- public JobScopeLink JobScope { get; set; }
- public override string AutoIncrementPrefix() => "JF";
- }
- }
|