CostSheetKit.cs 643 B

123456789101112131415161718192021
  1. using InABox.Core;
  2. namespace Comal.Classes
  3. {
  4. [UserTracking(typeof(Quote))]
  5. public class CostSheetKit : Entity, IPersistent, IRemotable, ISequenceable, IOneToMany<CostSheetSection>, IOneToMany<CostSheet>,
  6. ILicense<QuotesManagementLicense>
  7. {
  8. [EntityRelationship(DeleteAction.Cascade)]
  9. public CostSheetLink CostSheet { get; set; }
  10. [EntityRelationship(DeleteAction.SetNull)]
  11. public CostSheetSectionLink Section { get; set; }
  12. [EntityRelationship(DeleteAction.SetNull)]
  13. public KitLink Kit { get; set; }
  14. [NullEditor]
  15. public long Sequence { get; set; }
  16. }
  17. }