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 return new
{ {
BaseCost = BaseCost.Value, BaseCost = new
BonusBase = BonusBase.Value, {
PriceUP = PriceUP.Value, BaseCost.Value,
PriceUP_PR = PriceUP_PR.Value, },
PriceUP_Year = PriceUP_Year.Value, BonusBase = new
NPVNI = NPVNI.Value, {
BonusResult = BonusResult.Value 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
}
}; };
} }