BankRecurringModel.swift 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. //
  2. // BankRecurringModel.swift
  3. // Product Calculator
  4. //
  5. // Created by Suraj Kumar Mandal on 29/11/21.
  6. //
  7. import Foundation
  8. // MARK: - BankRecurringModel
  9. class BankRecurringModel {
  10. var depositDate, maturityDate : String?
  11. var term, amountDepositFreq : Int?
  12. var depositAmount, annualInterest, compundFreq, maturityAmount, totalInterestReceived, totalAmountDeposited : Double?
  13. var bankRecurringLookupList = [BankRecurringLookupList]()
  14. init(depositDate:String, maturityDate:String, term:Int, amountDepositFreq:Int, depositAmount:Double, annualInterest:Double, compundFreq:Double, maturityAmount:Double, totalInterestReceived:Double, totalAmountDeposited:Double) {
  15. self.depositDate = depositDate
  16. self.maturityDate = maturityDate
  17. self.term = term
  18. self.amountDepositFreq = amountDepositFreq
  19. self.depositAmount = depositAmount
  20. self.annualInterest = annualInterest
  21. self.compundFreq = compundFreq
  22. self.maturityAmount = maturityAmount
  23. self.totalInterestReceived = totalInterestReceived
  24. self.totalAmountDeposited = totalAmountDeposited
  25. }
  26. }
  27. class BankRecurringLookupList {
  28. let serialNo, daysToMaturity : Int?
  29. let referenceDate, referenceMonth, financialYear : String?
  30. let openingBal, amountDeposited, interestAccrued, totalInterestAccrued, interestCredited, closingBalance : Double?
  31. init(serialNo:Int, openingBal:Double, amountDeposited:Double, interestAccrued:Double, totalInterestAccrued:Double, interestCredited:Double, daysToMaturity:Int, referenceDate:String, referenceMonth:String, financialYear:String, closingBalance:Double) {
  32. self.serialNo = serialNo
  33. self.openingBal = openingBal
  34. self.amountDeposited = amountDeposited
  35. self.interestAccrued = interestAccrued
  36. self.interestCredited = interestCredited
  37. self.totalInterestAccrued = totalInterestAccrued
  38. self.daysToMaturity = daysToMaturity
  39. self.referenceDate = referenceDate
  40. self.referenceMonth = referenceMonth
  41. self.financialYear = financialYear
  42. self.closingBalance = closingBalance
  43. }
  44. }