SukanyaSamriddhiModel.swift 2.7 KB

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