| 123456789101112131415161718192021222324252627282930 |
- using InABox.Core;
- namespace Comal.Classes
- {
- public class JobScopeCostCentre : Entity, IRemotable, IPersistent, IOneToMany<Job>, IOneToMany<JobScope>, ILicense<ProjectManagementLicense>
- {
-
- [NullEditor]
- [EntityRelationship(DeleteAction.Cascade)]
- public JobLink Job { get; set; }
-
- [NullEditor]
- [EntityRelationship(DeleteAction.Cascade)]
- public JobScopeLink Scope { get; set; }
-
- [EditorSequence(1)]
- [EntityRelationship(DeleteAction.SetNull)]
- public CostCentreLink CostCentre { get; set; }
-
- [EditorSequence(2)]
- public double Cost { get; set; }
-
- [EditorSequence(3)]
- public double Markup { get; set; }
-
- [EditorSequence(4)]
- public double Sell { get; set; }
-
- }
- }
|