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.

126 lines
5.2 KiB

4 years ago
4 years ago
4 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Common.Model.CustomerModel
  7. {
  8. public class OnlineCustomerModel
  9. {
  10. public string flag { get; set; }
  11. public string customerId { get; set; }
  12. public string membershipId { get; set; }
  13. public string firstName { get; set; }
  14. public string middleName { get; set; }
  15. public string lastName1 { get; set; }
  16. public string lastName2 { get; set; }
  17. public string country { get; set; }
  18. public string address { get; set; }
  19. public string state { get; set; }
  20. public string zipCode { get; set; }
  21. public string district { get; set; }
  22. public string city { get; set; }
  23. public string email { get; set; }
  24. public string homePhone { get; set; }
  25. public string workPhone { get; set; }
  26. public string mobile { get; set; }
  27. public string nativeCountry { get; set; }
  28. public string dob { get; set; }
  29. public string placeOfIssue { get; set; }
  30. public string customerType { get; set; }
  31. public string occupation { get; set; }
  32. public string isBlackListed { get; set; }
  33. public string createdBy { get; set; }
  34. public string createdDate { get; set; }
  35. public string modifiedBy { get; set; }
  36. public string modifiedDate { get; set; }
  37. public string approvedBy { get; set; }
  38. public string approvedDate { get; set; }
  39. public string isDeleted { get; set; }
  40. public string lastTranId { get; set; }
  41. public int relationId { get; set; }
  42. public string relativeName { get; set; }
  43. public string address2 { get; set; }
  44. public string fullName { get; set; }
  45. public string postalCode { get; set; }
  46. public string idExpiryDate { get; set; }
  47. public string idType { get; set; }
  48. public string idNumber { get; set; }
  49. public string telNo { get; set; }
  50. public string companyName { get; set; }
  51. public string gender { get; set; }
  52. public int salaryRange { get; set; }
  53. public Decimal bonusPointPending { get; set; }
  54. public Decimal Redeemed { get; set; }
  55. public Decimal bonusPoint { get; set; }
  56. public Decimal todaysSent { get; set; }
  57. public int todaysNoOfTxn { get; set; }
  58. public int agentId { get; set; }
  59. public int branchId { get; set; }
  60. public DateTime memberIDissuedDate { get; set; }
  61. public string memberIDissuedByUser { get; set; }
  62. public string memberIDissuedAgentId { get; set; }
  63. public string memberIDissuedBranchId { get; set; }
  64. public Decimal totalSent { get; set; }
  65. public string idIssueDate { get; set; }
  66. public bool onlineUser { get; set; }
  67. public string customerPassword { get; set; }
  68. public string customerStatus { get; set; }
  69. public string isActive { get; set; }
  70. public string islocked { get; set; }
  71. public string sessionId { get; set; }
  72. public DateTime lastLoginTs { get; set; }
  73. public string howDidYouHear { get; set; }
  74. public string ansText { get; set; }
  75. public string ansEmail { get; set; }
  76. public string state2 { get; set; }
  77. public string ipAddress { get; set; }
  78. public string marketingSubscription { get; set; }
  79. public string userInfoDetail { get; set; }
  80. public string verifyDoc1 { get; set; }
  81. public string verifyDoc2 { get; set; }
  82. public string verifyDoc3 { get; set; }
  83. public string verifyDoc4 { get; set; }
  84. public string bankId { get; set; }
  85. public string accountNumber { get; set; }
  86. public int HasDeclare { get; set; }
  87. /// <summary>
  88. /// Added Field
  89. /// </summary>
  90. public string street { get; set; }
  91. public string senderCityjapan { get; set; }
  92. public string streetJapanese { get; set; }
  93. public string visaStatus { get; set; }
  94. public string employeeBusinessType { get; set; }
  95. public string nameofEmployeer { get; set; }
  96. public string ssnNo { get; set; }
  97. public string sourceOfFound { get; set; }
  98. public bool remitanceAllowed { get; set; }
  99. public string remarks { get; set; }
  100. public string registrationNo { get; set; }
  101. public string organizationType { get; set; }
  102. public string dateOfIncorporation { get; set; }
  103. public string natureOfCompany { get; set; }
  104. public string position { get; set; }
  105. public string nameofAuthoPerson { get; set; }
  106. public string MonthlyIncome { get; set; }
  107. public string IsCounterVisited { get; set; }
  108. public string AdditionalAddress { get; set; }
  109. public string DocumentType { get; set; }
  110. public string occupationOther { get; set; }
  111. }
  112. public class CustomerDocument
  113. {
  114. public string customerId { get; set; }
  115. public string fileUrl { get; set; }
  116. public string documentType { get; set; }
  117. public string fileDescription { get; set; }
  118. public string fileType { get; set; }
  119. }
  120. }