POTimeDepositModel.swift 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. //
  2. // POTimeDepositModel.swift
  3. // Product Calculator
  4. //
  5. // Created by Suraj Kumar Mandal on 04/12/21.
  6. //
  7. import Foundation
  8. // MARK: - POTimeDepositModel
  9. class POTimeDepositModel {
  10. var depositDate, maturityDate : String?
  11. var term, amountDepositFreq : Int?
  12. var depositAmount, annualInterest, compundFreq, maturityAmount, interestReceived, totalInterestReceived, totalAmountDeposited, interestRate : Double?
  13. var poTimeDepositLookupList = [POTimeDepositLookupList]()
  14. init(depositDate:String, maturityDate:String, term:Int, amountDepositFreq:Int, depositAmount:Double, annualInterest:Double, compundFreq:Double, maturityAmount:Double, interestReceived:Double, totalInterestReceived:Double, totalAmountDeposited:Double, interestRate: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.interestReceived = interestReceived
  24. self.totalInterestReceived = totalInterestReceived
  25. self.totalAmountDeposited = totalAmountDeposited
  26. self.interestRate = interestRate
  27. }
  28. }
  29. class POTimeDepositLookupList {
  30. let serialNo, daysToMaturity : Int?
  31. let referenceDate, referenceMonth, financialYear : String?
  32. let openingBal, amountDeposited, interestAccrued, totalInterestReceived, interestPaid, closingBalance : Double?
  33. init(serialNo:Int, openingBal:Double, amountDeposited:Double, interestAccrued:Double, totalInterestReceived:Double, interestPaid:Double, daysToMaturity:Int, referenceDate:String, referenceMonth:String, financialYear:String, closingBalance:Double) {
  34. self.serialNo = serialNo
  35. self.openingBal = openingBal
  36. self.amountDeposited = amountDeposited
  37. self.interestAccrued = interestAccrued
  38. self.interestPaid = interestPaid
  39. self.totalInterestReceived = totalInterestReceived
  40. self.daysToMaturity = daysToMaturity
  41. self.referenceDate = referenceDate
  42. self.referenceMonth = referenceMonth
  43. self.financialYear = financialYear
  44. self.closingBalance = closingBalance
  45. }
  46. }