public WSComprobante() { this.emisor = new EmisorReceptor(); this.receptor = new EmisorReceptor(); this.notasCredito = new List <NotaCredito>(); this.notasDebito = new List <NotaDebito>(); this.fecha = null; this.clave = null; }
/// <summary> /// carga los datos del emisor y recetor a las variables mateadas a la base de datos /// </summary> public void cargarEmisorReceptor() { this.emisorIdentificacion = this.emisor.numeroIdentificacion; this.emisorTipo = this.emisor.tipoIdentificacion; this.receptorIdentificacion = this.receptor.numeroIdentificacion; this.receptorTipo = this.receptor.tipoIdentificacion; this.Receptor = new EmisorReceptor(); }