InversionesCE.vb 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  1. Public Class InversionesCE
  2. Private _IdDeDocumento As Integer = 0
  3. Private _CodigoInversion As String = String.Empty
  4. Private _EstadoDocumento As String = String.Empty
  5. Private _EstadoAutorizacion As String = String.Empty
  6. Private _CodigoEmpresa As String = String.Empty
  7. Private _CodigoIF As String = String.Empty
  8. Private _TipoIF As String = String.Empty
  9. Private _CodigoEmisor As Integer = 0
  10. Private _CodigoCalificacionDeRiesgo As String = String.Empty
  11. Private _CodigoCalificadoraDeRiesgo As String = String.Empty
  12. Private _Comentarios As String = String.Empty
  13. Private _TipoOperacion As String = String.Empty
  14. Private _DocumentoBase As Integer = 0
  15. Private _CodigoAsociado As String = String.Empty
  16. Private _MontoInversion As Double = 0
  17. Private _Rendimiento As Double = 0
  18. Private _Ingresos As Double = 0
  19. Private _Precio As Double = 0
  20. Private _PlazoNumero As Integer = 0
  21. Private _PlazoFactor As String = 0
  22. Private _FechaDocumento As Date = Date.Today.Date
  23. Private _Pais As String = String.Empty
  24. Private _TipoMercado As String = String.Empty
  25. Private _NombreManual As String = String.Empty
  26. Private _CodigoManual As String = String.Empty
  27. Private _Periodicidad As String = String.Empty
  28. Private _TipoTasa As String = String.Empty
  29. Private _TipoRenta As String = String.Empty
  30. Private _OFondo As String = String.Empty
  31. Private _EstadoProceso As String = String.Empty
  32. Private _CodigoCompra As String = String.Empty
  33. Private _EstadoReporto As String = String.Empty
  34. Private _IdFlujo As Integer = 0
  35. Private _IdEA As Integer = 0
  36. Private _IdProInv As Integer = 0
  37. Public Property IdDeDocumento As Integer
  38. Get
  39. Return _IdDeDocumento
  40. End Get
  41. Set(value As Integer)
  42. _IdDeDocumento = value
  43. End Set
  44. End Property
  45. Public Property CodigoIversion As String
  46. Get
  47. If _CodigoInversion Is Nothing Then Return "" Else Return _CodigoInversion
  48. End Get
  49. Set(value As String)
  50. _CodigoInversion = value
  51. End Set
  52. End Property
  53. Public Property EstadoProceso As String
  54. Get
  55. If _EstadoProceso Is Nothing Then Return "" Else Return _EstadoProceso
  56. End Get
  57. Set(value As String)
  58. _EstadoProceso = value
  59. End Set
  60. End Property
  61. Public Property CodigoEmisor As Integer
  62. Get
  63. Return _CodigoEmisor
  64. End Get
  65. Set(value As Integer)
  66. _CodigoEmisor = value
  67. End Set
  68. End Property
  69. Public Property CodigoCalificacionDeRiesgo As String
  70. Get
  71. If _CodigoCalificacionDeRiesgo Is Nothing Then Return String.Empty Else Return _CodigoCalificacionDeRiesgo
  72. End Get
  73. Set(value As String)
  74. _CodigoCalificacionDeRiesgo = value
  75. End Set
  76. End Property
  77. Public Property CodigoEmpresaCalificadora As String
  78. Get
  79. If _CodigoCalificadoraDeRiesgo Is Nothing Then Return String.Empty Else Return _CodigoCalificadoraDeRiesgo
  80. End Get
  81. Set(value As String)
  82. _CodigoCalificadoraDeRiesgo = value
  83. End Set
  84. End Property
  85. Public Property CodigoInstrumentoFinanciero As String
  86. Get
  87. If _CodigoIF Is Nothing Then Return String.Empty Else Return _CodigoIF
  88. End Get
  89. Set(value As String)
  90. _CodigoIF = value
  91. End Set
  92. End Property
  93. Public Property TipoInstrumentoFinanciero As String
  94. Get
  95. Return _TipoIF
  96. End Get
  97. Set(value As String)
  98. _TipoIF = value
  99. End Set
  100. End Property
  101. Public Property CodigoEmpresa As String
  102. Get
  103. If _CodigoEmpresa Is Nothing Then Return String.Empty Else Return _CodigoEmpresa
  104. End Get
  105. Set(value As String)
  106. _CodigoEmpresa = value
  107. End Set
  108. End Property
  109. Public Property PlazoNumero As Integer
  110. Get
  111. Return _PlazoNumero
  112. End Get
  113. Set(value As Integer)
  114. _PlazoNumero = value
  115. End Set
  116. End Property
  117. Public Property PlazoFactor As String
  118. Get
  119. If _Plazofactor Is Nothing Then Return String.Empty Else Return _Plazofactor
  120. End Get
  121. Set(value As String)
  122. _Plazofactor = value
  123. End Set
  124. End Property
  125. Public Property TipoOperacion As String
  126. Get
  127. Return _TipoOperacion
  128. End Get
  129. Set(value As String)
  130. _TipoOperacion = value
  131. End Set
  132. End Property
  133. Public Property OFondo As String
  134. Get
  135. If _OFondo Is Nothing Then Return String.Empty Else Return _OFondo
  136. End Get
  137. Set(value As String)
  138. _OFondo = value
  139. End Set
  140. End Property
  141. Public Property CodigoCompra As String
  142. Get
  143. If _CodigoCompra Is Nothing Then Return String.Empty Else Return _CodigoCompra
  144. End Get
  145. Set(value As String)
  146. _CodigoCompra = value
  147. End Set
  148. End Property
  149. Public Property EstadoDocumento As String
  150. Get
  151. If _EstadoDocumento Is Nothing Then Return String.Empty Else Return _EstadoDocumento
  152. End Get
  153. Set(value As String)
  154. _EstadoDocumento = value
  155. End Set
  156. End Property
  157. Public Property Comentarios As String
  158. Get
  159. Return _Comentarios
  160. End Get
  161. Set(value As String)
  162. _Comentarios = value
  163. End Set
  164. End Property
  165. Public Property CodigoAsociado As String
  166. Get
  167. Return _CodigoAsociado
  168. End Get
  169. Set(value As String)
  170. _CodigoAsociado = value
  171. End Set
  172. End Property
  173. Public Property EstadoReporto As String
  174. Get
  175. Return _EstadoReporto
  176. End Get
  177. Set(value As String)
  178. _EstadoReporto = value
  179. End Set
  180. End Property
  181. Public Property IdFlujo As Integer
  182. Get
  183. Return _IdFlujo
  184. End Get
  185. Set(value As Integer)
  186. _IdFlujo = value
  187. End Set
  188. End Property
  189. Public Property IdEA As Integer
  190. Get
  191. Return _IdEA
  192. End Get
  193. Set(value As Integer)
  194. _IdEA = value
  195. End Set
  196. End Property
  197. Public Property IdProInv As Integer
  198. Get
  199. Return _IdProInv
  200. End Get
  201. Set(value As Integer)
  202. _IdProInv = value
  203. End Set
  204. End Property
  205. Public Property DocumentoBase As Integer
  206. Get
  207. Return _DocumentoBase
  208. End Get
  209. Set(value As Integer)
  210. _DocumentoBase = value
  211. End Set
  212. End Property
  213. Public Property FechaDocumento As Date
  214. Get
  215. Return _FechaDocumento
  216. End Get
  217. Set(value As Date)
  218. _FechaDocumento = value
  219. End Set
  220. End Property
  221. Public Property Pais As String
  222. Get
  223. Return _Pais
  224. End Get
  225. Set(value As String)
  226. _Pais = value
  227. End Set
  228. End Property
  229. Public Property TipoMercado As String
  230. Get
  231. Return _TipoMercado
  232. End Get
  233. Set(value As String)
  234. _TipoMercado = value
  235. End Set
  236. End Property
  237. Public Property NombreManual As String
  238. Get
  239. Return _NombreManual
  240. End Get
  241. Set(value As String)
  242. _NombreManual = value
  243. End Set
  244. End Property
  245. Public Property CodigoManual As String
  246. Get
  247. Return _CodigoManual
  248. End Get
  249. Set(value As String)
  250. _CodigoManual = value
  251. End Set
  252. End Property
  253. Public Property Periodicidad As String
  254. Get
  255. Return _Periodicidad
  256. End Get
  257. Set(value As String)
  258. _Periodicidad = value
  259. End Set
  260. End Property
  261. Public Property TipoTasa As String
  262. Get
  263. Return _TipoTasa
  264. End Get
  265. Set(value As String)
  266. _TipoTasa = value
  267. End Set
  268. End Property
  269. Public Property TipoRenta As String
  270. Get
  271. Return _TipoRenta
  272. End Get
  273. Set(value As String)
  274. _TipoRenta = value
  275. End Set
  276. End Property
  277. Public Sub New()
  278. _CodigoManual = String.Empty
  279. _TipoOperacion = String.Empty
  280. _Comentarios = String.Empty
  281. End Sub
  282. End Class