| 123456789101112131415161718192021 |
- using InABox.Core;
- namespace Comal.Classes
- {
- [UserTracking(typeof(Quote))]
- public class CostSheetKit : Entity, IPersistent, IRemotable, ISequenceable, IOneToMany<CostSheetSection>, IOneToMany<CostSheet>,
- ILicense<QuotesManagementLicense>
- {
- [EntityRelationship(DeleteAction.Cascade)]
- public CostSheetLink CostSheet { get; set; }
- [EntityRelationship(DeleteAction.SetNull)]
- public CostSheetSectionLink Section { get; set; }
- [EntityRelationship(DeleteAction.SetNull)]
- public KitLink Kit { get; set; }
- [NullEditor]
- public long Sequence { get; set; }
- }
- }
|