PORecurringDepositModel.swift 2.2 KB

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