QuoteContractProposal.cs 559 B

123456789101112131415161718
  1. using InABox.Core;
  2. namespace Comal.Classes
  3. {
  4. [UserTracking(typeof(Quote))]
  5. public class QuoteContractProposal : Entity, IRemotable, IPersistent, IQuoteContractProposal, IManyToMany<QuoteContract, QuoteProposal>,
  6. ILicense<QuotesManagementLicense>
  7. {
  8. [EntityRelationship(DeleteAction.Cascade)]
  9. public QuoteContractLink Contract { get; set; }
  10. [EntityRelationship(DeleteAction.Cascade)]
  11. public QuoteProposalLink Proposal { get; set; }
  12. [NullEditor]
  13. public long Sequence { get; set; }
  14. }
  15. }