using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GreenTree.Nachtragsmanagement.Core.Domain.Appendix { public class Appendix : BaseEntity { #region Fields private ICollection _categories; #endregion /// /// Id of corresponding site /// public int SiteId { get; set; } /// /// Customized number for identification /// public int CustomNumber { get; set; } /// /// The lot /// public string Lot { get; set; } /// /// Monetary value of all corresponding deviations /// public decimal Value { get; set; } /// /// Percentage probalitity /// public decimal Probability { get; set; } /// /// Number of corresponding offer /// public int OfferingNumber { get; set; } /// /// Date when corresponding offer was created /// public DateTime OfferingDate { get; set; } /// /// Date of negotiation /// public DateTime NegotiationDate { get; set; } /// /// Value of negotiation /// public decimal NegotiationValue { get; set; } /// /// Determines if protocol exists /// public bool ProtocolExists { get; set; } /// /// Number of the corresponding order /// public int OrderNumber { get; set; } /// /// Date of the corresponding order /// public DateTime OrderDate { get; set; } /// /// Editable comment /// public string Comment { get; set; } } }