| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- export class InvestmentProposalForm {
- asunto: string = "";
- origenes_fondo: string = "";
- name: string = "";
- tipo_tasa: string = "";
- tipo_renta: string = "";
- empresa: string = "";
- pais: string = "";
- instrumentos: string = "";
- tipo_mercado: string = "";
- emisores: string = "";
- periodicidad: string = "";
- calificadora_riesgo: string = "";
- calificacion: string = "";
- comentarios: string = "";
- justificacion: string = "";
- base_anual: string = "";
- casa: string = "";
- formato_ingreso: string = "";
- plazo: string = "";
- operaciones: string = "";
- clear() {
- this.asunto = "";
- this.origenes_fondo = "";
- this.name = "";
- this.tipo_tasa = "";
- this.tipo_renta = "";
- this.empresa = "";
- this.pais = "";
- this.instrumentos = "";
- this.tipo_mercado = "";
- this.emisores = "";
- this.periodicidad = "";
- this.calificadora_riesgo = "";
- this.calificacion = "";
- this.comentarios = "";
- this.justificacion = "";
- this.base_anual = "";
- this.casa = "";
- this.plazo = "";
- this.operaciones = "";
- this.formato_ingreso = "";
- }
- }
- export class GeneralInfo {
- asunto: string = "";
- origenes_fondo: string = "";
- name: string = "";
- tipo_tasa: string = "";
- tipo_renta: string = "";
- periodicidad: string = "";
- instrumentos: string = "";
- base_anual: string = "";
- casa: string = "";
- formato_ingreso: string = "";
- }
- export class ComplementInfo {
- tipo_mercado: string = "";
- emisores: string = "";
- empresa: string = "";
- pais: string = "";
- comentarios: string = "";
- justificacion: string = "";
- plazo: string = "";
- operaciones: string = "";
- }
|