| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- 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 = "";
- resultado_operacion: 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 = "";
- this.resultado_operacion = "";
- }
- }
- 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 = "";
- }
|