40 lines
1.2 KiB
C#
40 lines
1.2 KiB
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 object GetValues()
|
|
{
|
|
return new
|
|
{
|
|
BaseCost = BaseCost.Value,
|
|
BonusBase = BonusBase.Value,
|
|
PriceUP = PriceUP.Value,
|
|
PriceUP_PR = PriceUP_PR.Value,
|
|
PriceUP_Year = PriceUP_Year.Value,
|
|
NPVNI = NPVNI.Value,
|
|
BonusResult = BonusResult.Value
|
|
};
|
|
}
|
|
|
|
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();
|
|
}
|
|
}
|
|
} |