You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.2 KiB

6 years ago
  1. //
  2. // WalletTransactionViewModel.swift
  3. // GMERemittance
  4. //
  5. // Created by Sujal on 3/2/18.
  6. // Copyright © 2018 Gobal Money Express Co. Ltd. All rights reserved.
  7. //
  8. import Foundation
  9. //class WalletTransactionViewModel: ModelExtension {
  10. // private var nameArray = ["Ram Krishna Dhakal", "Dhan Singh Saud", "Dhan Singh Saud"]
  11. // private var dateArray = ["Wed, 23/11/2017", "Wed, 23/11/2017", "Wed, 23/11/2017"]
  12. // private var amountArray = ["10,000 KRW", "10,000 KRW", "10,000 KRW"]
  13. // private var transactionNumberArray = ["10004015", "10004015", "10004015"]
  14. // private var status = ["Accepted", "Declined", "Pending"]
  15. //}
  16. //extension WalletTransactionViewModel {
  17. //
  18. // func getName(index: Int) -> String {
  19. // return "To: " + nameArray[index]
  20. // }
  21. //
  22. // func getDate(index: Int) -> String {
  23. // return dateArray[index]
  24. // }
  25. //
  26. // func getAmount(index: Int) -> String {
  27. // return amountArray[index]
  28. // }
  29. //
  30. // func getTransactionNumber(index: Int) -> String {
  31. // return "Transaction No. " + transactionNumberArray[index]
  32. // }
  33. //
  34. // func getStatus(index: Int) -> String {
  35. // return status[index]
  36. // }
  37. //}