SeniorCitizenSavingModel.swift 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //
  2. // SeniorCitizenSavingModel.swift
  3. // Product Calculator
  4. //
  5. // Created by Suraj Kumar Mandal on 05/12/21.
  6. //
  7. import Foundation
  8. // MARK: - SeniorCitizenSavingModel
  9. class SeniorCitizenSavingModel {
  10. var maturityDate, maturityDisplayDate : String?
  11. var interestReceived, totalInterestReceived, interestRate : Double?
  12. var seniorCitizenSavingSchemeLookupsList = [SCSSLookupList]()
  13. init(maturityDate:String, maturityDisplayDate:String, interestReceived:Double, totalInterestReceived:Double, interestRate:Double) {
  14. self.maturityDate = maturityDate
  15. self.maturityDisplayDate = maturityDisplayDate
  16. self.interestReceived = interestReceived
  17. self.totalInterestReceived = totalInterestReceived
  18. self.interestRate = interestRate
  19. }
  20. }
  21. class SCSSLookupList {
  22. let serialNo, daysToMaturity : Int?
  23. let referenceDate, referenceMonth, financialYear : String?
  24. let amountDeposited, totalInterestReceived, interestReceived : Double?
  25. init(serialNo:Int, amountDeposited:Double, totalInterestReceived:Double, interestReceived:Double, daysToMaturity:Int, referenceDate:String, referenceMonth:String, financialYear:String) {
  26. self.serialNo = serialNo
  27. self.amountDeposited = amountDeposited
  28. self.interestReceived = interestReceived
  29. self.totalInterestReceived = totalInterestReceived
  30. self.daysToMaturity = daysToMaturity
  31. self.referenceDate = referenceDate
  32. self.referenceMonth = referenceMonth
  33. self.financialYear = financialYear
  34. }
  35. }