private void AddFinancialInformationIfChange(FinalcialInformationType type, Dictionary <FinalcialInformationType, decimal> valuesToUpdate, string newValueStr) { if (decimal.TryParse(newValueStr, out decimal newValue)) { if (newValue != CurrentTransportForm.FinalcialInformation[type]) { valuesToUpdate[type] = newValue; } } }
public void AddFinalcialInformation(FinalcialInformationType type, decimal value) { FinalcialInformation[type] = value; }
public decimal this[FinalcialInformationType type] { get => _financialInformation[type];