27 lines
778 B
C#
27 lines
778 B
C#
namespace EvoCalculator.Core.Calculation.Post
|
|
{
|
|
public class PostValues
|
|
{
|
|
public BaseCost BaseCost;
|
|
|
|
public BonusBase BonusBase;
|
|
public PriceUP PriceUP;
|
|
public PriceUP_PR PriceUP_PR;
|
|
public PriceUP_Year PriceUP_Year;
|
|
public PriceUP_Year_PR PriceUP_Year_PR;
|
|
public NPVNI NPVNI;
|
|
public BonusResult BonusResult;
|
|
|
|
public PostValues()
|
|
{
|
|
BaseCost = new BaseCost();
|
|
BonusBase = new BonusBase();
|
|
PriceUP = new PriceUP();
|
|
PriceUP_PR = new PriceUP_PR();
|
|
PriceUP_Year = new PriceUP_Year();
|
|
PriceUP_Year_PR = new PriceUP_Year_PR();
|
|
NPVNI = new NPVNI();
|
|
BonusResult = new BonusResult();
|
|
}
|
|
}
|
|
} |