1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using InABox.Core;
- namespace Comal.Classes
- {
- public class QuoteProposalLink : EntityLink<QuoteProposal>, IQuoteProposal
- {
- [NullEditor]
- public override Guid ID { get; set; }
- [NullEditor]
- public QuoteLink Quote { get; set; }
- [DateEditor(Visible = Visible.Default, Editable = Editable.Hidden)]
- public DateTime Date { get; set; }
- [TextBoxEditor(Visible = Visible.Default, Editable = Editable.Hidden)]
- public string Description { get; set; }
- [CurrencyEditor(Editable = Editable.Hidden, Summary = Summary.Sum)]
- [Aggregate(typeof(QuoteProposalExTax))]
- public double ProposalExTax { get; set; }
- [CurrencyEditor(Editable = Editable.Hidden, Summary = Summary.Sum)]
- [Aggregate(typeof(QuoteProposalTax))]
- public double ProposalTax { get; set; }
- [CurrencyEditor(Visible = Visible.Default, Editable = Editable.Hidden, Summary = Summary.Sum)]
- [Aggregate(typeof(QuoteProposalIncTax))]
- public double ProposalIncTax { get; set; }
- [CheckBoxEditor(Visible = Visible.Optional, Editable = Editable.Hidden)]
- public bool Default { get; set; }
- [NullEditor]
- public long Sequence { get; set; }
- }
- }
|