using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GreenTree.Nachtragsmanagement.Core.Domain.Deviation
{
public class Deviation : BaseEntity
{
///
/// Customized number for identification
///
public string CustomNumber { get; set; }
///
/// Date when deviation were created
///
public DateTime ReceiptDate { get; set; }
///
/// Editable comment
///
public string Comment { get; set; }
///
/// Monetary value
///
public decimal? Value { get; set; }
///
/// Id of corresponding appendix
///
public int? AppendixId { get; set; }
///
/// Corresponding appendix
///
public Appendix.Appendix Appendix { get; set; }
///
/// Id of the current deviation status
///
public int? StatusId { get; set; }
///
/// Current deviation status
///
public Status Status { get; set; }
///
/// Id of the current deviation disturbance
///
public int? DisturbanceId { get; set; }
///
/// Current deviation disturbance
///
public Disturbance Disturbance { get; set; }
///
/// Id of the current deviation kind
///
public int? KindId { get; set; }
///
/// Current deviation kind
///
public Kind Kind { get; set; }
}
}