FDSTDRDetailsModel.swift 2.0 KB

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