investment-proposal-form.ts 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. clear() {
  23. this.asunto = "";
  24. this.origenes_fondo = "";
  25. this.name = "";
  26. this.tipo_tasa = "";
  27. this.tipo_renta = "";
  28. this.empresa = "";
  29. this.pais = "";
  30. this.instrumentos = "";
  31. this.tipo_mercado = "";
  32. this.emisores = "";
  33. this.periodicidad = "";
  34. this.calificadora_riesgo = "";
  35. this.calificacion = "";
  36. this.comentarios = "";
  37. this.justificacion = "";
  38. this.base_anual = "";
  39. this.casa = "";
  40. this.plazo = "";
  41. this.operaciones = "";
  42. this.formato_ingreso = "";
  43. }
  44. }
  45. export class GeneralInfo {
  46. asunto: string = "";
  47. origenes_fondo: string = "";
  48. name: string = "";
  49. tipo_tasa: string = "";
  50. tipo_renta: string = "";
  51. periodicidad: string = "";
  52. instrumentos: string = "";
  53. base_anual: string = "";
  54. casa: string = "";
  55. formato_ingreso: string = "";
  56. }
  57. export class ComplementInfo {
  58. tipo_mercado: string = "";
  59. emisores: string = "";
  60. empresa: string = "";
  61. pais: string = "";
  62. comentarios: string = "";
  63. justificacion: string = "";
  64. plazo: string = "";
  65. operaciones: string = "";
  66. }