public ConsultasWSMTXCA( WSMTXCA ws, LogueadorFe logueador )
 {
     this.ws = ws;
     this.wa = new WrapperAutorizacion();
     this.logueador = logueador;
     this.managerErrores = new ManagerErroresFe( this.logueador );
 }
 public ConsultasWSFex( WSFEX wsfe, LogueadorFe logueador )
 {
     this.wsfe = wsfe;
     this.wa = new WrapperAutorizacion();
     this.logueador = logueador;
     this.managerErrores = new ManagerErroresFe( this.logueador );
 }
 public ConsultasWSFe( WSFEV1 wsfe )
 {
     this.wsfe = wsfe;
     this.wa = new WrapperAutorizacion();
     this.logueador = new LogueadorFe();
     this.managerErrores = new ManagerErroresFe( this.logueador );
 }
 private AuthRequestType ObtenerAuthReq( Autorizacion aut )
 {
     WrapperAutorizacion wa = new WrapperAutorizacion();
     return wa.ConvertirMTXCA( aut );
 }
 private ClsFEXAuthRequest ObtenerFeAuthReq( Autorizacion aut )
 {
     WrapperAutorizacion wa = new WrapperAutorizacion();
     return wa.ConvertirFex( aut );
 }