BondDebenturesModel.swift 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. //
  2. // BondDebenturesModel.swift
  3. // Product Calculator
  4. //
  5. // Created by Suraj Kumar Mandal on 30/11/21.
  6. //
  7. import Foundation
  8. // MARK: - BondDebenturesModel
  9. class BondDebenturesModel {
  10. var serialNo, numberOfBondsPurchased, term, coupounPayoutFrequency, tenureYearsDays, totalMonths : Int?
  11. var referenceDate, referenceMonth, financialYear, daysToMaturity, viewMaturityDate, investmentDate : String?
  12. var amountDeposited, couponReceived, totalCouponReceived, bondFaceValue, effectiveTimeToMaturity, interestCouponRate, currentYield, currentValue : Double?
  13. init(serialNo:Int, numberOfBondsPurchased:Int, term:Int, coupounPayoutFrequency:Int, tenureYearsDays:Int, totalMonths:Int, referenceDate:String, referenceMonth:String, financialYear:String, daysToMaturity:String, viewMaturityDate:String, investmentDate:String, amountDeposited:Double, couponReceived:Double, totalCouponReceived:Double, bondFaceValue:Double, effectiveTimeToMaturity:Double, interestCouponRate:Double, currentYield:Double, currentValue:Double) {
  14. self.serialNo = serialNo
  15. self.numberOfBondsPurchased = numberOfBondsPurchased
  16. self.term = term
  17. self.coupounPayoutFrequency = coupounPayoutFrequency
  18. self.tenureYearsDays = tenureYearsDays
  19. self.totalMonths = totalMonths
  20. self.referenceDate = referenceDate
  21. self.referenceMonth = referenceMonth
  22. self.financialYear = financialYear
  23. self.daysToMaturity = daysToMaturity
  24. self.viewMaturityDate = viewMaturityDate
  25. self.investmentDate = investmentDate
  26. self.amountDeposited = amountDeposited
  27. self.couponReceived = couponReceived
  28. self.totalCouponReceived = totalCouponReceived
  29. self.bondFaceValue = bondFaceValue
  30. self.effectiveTimeToMaturity = effectiveTimeToMaturity
  31. self.interestCouponRate = interestCouponRate
  32. self.currentYield = currentYield
  33. self.currentValue = currentValue
  34. }
  35. }
  36. // MARK: - BondDebenturesOutputListModel
  37. class BondDebenturesOutputListModel {
  38. var serialNo, daysToMaturity : Int?
  39. var referenceDate, referenceMonth, financialYear : String?
  40. var bondAmountDeposited, couponReceived, totalCouponReceived : Double?
  41. init(serialNo:Int, daysToMaturity:Int, referenceDate:String, referenceMonth:String, financialYear:String, bondAmountDeposited:Double, couponReceived:Double, totalCouponReceived:Double) {
  42. self.serialNo = serialNo
  43. self.daysToMaturity = daysToMaturity
  44. self.referenceDate = referenceDate
  45. self.referenceMonth = referenceMonth
  46. self.financialYear = financialYear
  47. self.bondAmountDeposited = bondAmountDeposited
  48. self.couponReceived = couponReceived
  49. self.totalCouponReceived = totalCouponReceived
  50. }
  51. }