| 123456789101112131415161718 | using InABox.Core;namespace Comal.Classes{    [UserTracking(typeof(Quote))]    public class QuoteContractProposal : Entity, IRemotable, IPersistent, IQuoteContractProposal, IManyToMany<QuoteContract, QuoteProposal>,        ILicense<QuotesManagementLicense>    {        [EntityRelationship(DeleteAction.Cascade)]        public QuoteContractLink Contract { get; set; }        [EntityRelationship(DeleteAction.Cascade)]        public QuoteProposalLink Proposal { get; set; }        [NullEditor]        public long Sequence { get; set; }    }}
 |