From 25f82b3347502677134ea14a4ddb461105666a73 Mon Sep 17 00:00:00 2001 From: vchikalkin Date: Mon, 16 Nov 2020 10:44:15 +0300 Subject: [PATCH] revert postvalues type --- .../Post/PostValues.cs | 35 ++++--------------- 1 file changed, 7 insertions(+), 28 deletions(-) diff --git a/EvoCalculator.Core.Calculation/Post/PostValues.cs b/EvoCalculator.Core.Calculation/Post/PostValues.cs index cbdbda6..d6a480e 100644 --- a/EvoCalculator.Core.Calculation/Post/PostValues.cs +++ b/EvoCalculator.Core.Calculation/Post/PostValues.cs @@ -15,34 +15,13 @@ { return new { - 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 - } + 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 }; }