investment-proposal-form.ts 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. export class InvestmentProposalForm {
  2. asunto: string = "";
  3. origenes_fondo: string = "";
  4. name: string = "";
  5. tipo_tasa: string = "";
  6. tipo_renta: string = "";
  7. empresa: string = "";
  8. pais: string = "";
  9. instrumentos: string = "";
  10. tipo_mercado: string = "";
  11. emisores: string = "";
  12. periodicidad: string = "";
  13. calificadora_riesgo: string = "";
  14. calificacion: string = "";
  15. comentarios: string = "";
  16. justificacion: string = "";
  17. base_anual: string = "";
  18. casa: string = "";
  19. formato_ingreso: string = "";
  20. plazo: string = "";
  21. operaciones: string = "";
  22. resultado_operacion: string = "";
  23. clear() {
  24. this.asunto = "";
  25. this.origenes_fondo = "";
  26. this.name = "";
  27. this.tipo_tasa = "";
  28. this.tipo_renta = "";
  29. this.empresa = "";
  30. this.pais = "";
  31. this.instrumentos = "";
  32. this.tipo_mercado = "";
  33. this.emisores = "";
  34. this.periodicidad = "";
  35. this.calificadora_riesgo = "";
  36. this.calificacion = "";
  37. this.comentarios = "";
  38. this.justificacion = "";
  39. this.base_anual = "";
  40. this.casa = "";
  41. this.plazo = "";
  42. this.operaciones = "";
  43. this.formato_ingreso = "";
  44. this.resultado_operacion = "";
  45. }
  46. }
  47. export class GeneralInfo {
  48. asunto: string = "";
  49. origenes_fondo: string = "";
  50. name: string = "";
  51. tipo_tasa: string = "";
  52. tipo_renta: string = "";
  53. periodicidad: string = "";
  54. instrumentos: string = "";
  55. base_anual: string = "";
  56. casa: string = "";
  57. formato_ingreso: string = "";
  58. }
  59. export class ComplementInfo {
  60. tipo_mercado: string = "";
  61. emisores: string = "";
  62. empresa: string = "";
  63. pais: string = "";
  64. comentarios: string = "";
  65. justificacion: string = "";
  66. plazo: string = "";
  67. operaciones: string = "";
  68. }