KisanVikasPatraModel.swift 2.2 KB

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