Files
Alexander Mikhailov c9fc96eaac #Outlook - 19.1
2019-05-06 09:45:48 +03:00

23 lines
777 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Runtime.Serialization;
namespace DevExpress.DevAV {
public class QuoteItem : DatabaseObject {
public virtual Quote Quote { get; set; }
public long? QuoteId { get; set; }
public virtual Product Product { get; set; }
public long? ProductId { get; set; }
public int ProductUnits { get; set; }
[DataType(DataType.Currency)]
public decimal ProductPrice { get; set; }
[DataType(DataType.Currency)]
public decimal Discount { get; set; }
[DataType(DataType.Currency)]
public decimal Total { get; set; }
}
}