17 lines
521 B
C#
17 lines
521 B
C#
namespace TIAM.Entities.Transfers;
|
|
|
|
public interface ITransfeDestinationPrices
|
|
{
|
|
//public PriceType PriceType { get; set; }
|
|
public double Price { get; set; }
|
|
public double? Price2 { get; set; }
|
|
public double? Price3 { get; set; }
|
|
|
|
public double ProductCommis { get; set; }
|
|
|
|
//public double? ExtraPrice { get; set; }
|
|
/// <summary>
|
|
/// Kihajtás v. behajtás az ExtraPrice! Ha null, akkor mindkettő...
|
|
/// </summary>
|
|
//public TransferExtraPriceType ExtraPriceType { get; set; }
|
|
} |