fix send post values #2

This commit is contained in:
Chika 2020-11-15 22:16:01 +03:00
parent 54cec926ff
commit 057ae4cde7

View File

@ -15,13 +15,34 @@
{
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
BaseCost = new
{
BaseCost.Value,
},
BonusBase = new
{
BonusBase.Value,
},
PriceUP = new
{
PriceUP.Value,
},
PriceUP_PR = new
{
PriceUP_PR.Value,
},
PriceUP_Year = new
{
PriceUP_Year.Value,
},
nPVNI = new
{
NPVNI.Value,
},
BonusResult = new
{
BonusResult.Value
}
};
}