using InABox.Core; namespace Comal.Classes { [UserTracking(typeof(Quote))] public class QuoteContractProposal : Entity, IRemotable, IPersistent, IQuoteContractProposal, IManyToMany, ILicense { [EntityRelationship(DeleteAction.Cascade)] public QuoteContractLink Contract { get; set; } [EntityRelationship(DeleteAction.Cascade)] public QuoteProposalLink Proposal { get; set; } [NullEditor] public long Sequence { get; set; } protected override void Init() { base.Init(); Contract = new QuoteContractLink(); Proposal = new QuoteProposalLink(); } } }