public void InterestPaymentShouldCalculatedWithoutError()
        {
            //Act
            var exception = Record.Exception(() => FinancialCalculations.InterestPayment(1.4, 24, 48, 100000, 0, DueDate.EndOfPeriod));

            //Assert
            exception.Should().BeNull();
        }