PublicProvidentModel.swift 2.6 KB

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