Example #1
0
 public Ajustes(string codigoDocumento, int numeroDocumento)
 {
     this.encabezadoComprobante = new MComprobante();
     this.comprobanteXML        = new ComprobanteXML();
     this.dItemDAO            = new DitemDAO();
     this.conceptoContableDAO = new ConceptoContableDAO();
     this.cEmpresaDAO         = new CempresaDAO();
     this.codigoDocumento     = codigoDocumento;
     this.numeroDocumento     = numeroDocumento;
 }
Example #2
0
 public Ajustes()
 {
     this.encabezadoComprobante = new MComprobante();
     this.comprobanteXML        = new ComprobanteXML();
     this.dItemDAO            = new DitemDAO();
     this.conceptoContableDAO = new ConceptoContableDAO();
     this.cEmpresaDAO         = new CempresaDAO();
     this.codigoDocumento     = "";
     this.numeroDocumento     = 0;
 }
Example #3
0
 public ConsumoInterno(string codigoDocumento, int numeroDocumento, bool devolucion)
 {
     this.encabezadoComprobante = new MComprobante();
     this.comprobanteXML        = new ComprobanteXML();
     this.dItemDAO            = new DitemDAO();
     this.conceptoContableDAO = new ConceptoContableDAO();
     this.cEmpresaDAO         = new CempresaDAO();
     this.codigoDocumento     = codigoDocumento;
     this.numeroDocumento     = numeroDocumento;
     this.devolucion          = devolucion;
 }
Example #4
0
 public ConsumoInterno()
 {
     this.encabezadoComprobante = new MComprobante();
     this.comprobanteXML        = new ComprobanteXML();
     this.dItemDAO            = new DitemDAO();
     this.conceptoContableDAO = new ConceptoContableDAO();
     this.cEmpresaDAO         = new CempresaDAO();
     this.codigoDocumento     = "";
     this.numeroDocumento     = 0;
     this.devolucion          = false;
 }
Example #5
0
 public InterfaceFacturaProveedor(string codigoDocumento, int numeroDocumento)
 {
     this.encabezadoComprobante = new MComprobante();
     this.comprobanteXML        = new ComprobanteXML();
     this.facturaProveedorDAO   = new MFacturaProveedorDAO();
     this.facturaProveedor      = new MFacturaProveedor();
     this.dItemDAO              = new DitemDAO();
     this.conceptoContableDAO   = new ConceptoContableDAO();
     this.cEmpresaDAO           = new CempresaDAO();
     this.retencionProveedorDAO = new RetencionProveedorDAO();
     this.codigoDocumento       = codigoDocumento;
     this.numeroDocumento       = numeroDocumento;
 }
Example #6
0
 public InterfaceFacturaCliente(string codigoDocumento, int numeroDocumento, bool contabilizaDescuentos)
 {
     this.encabezadoComprobante = new MComprobante();
     this.comprobanteXML        = new ComprobanteXML();
     this.facturaClienteDAO     = new MFacturaClienteDAO();
     this.facturaCliente        = new MFacturaCliente();
     this.dItemDAO              = new DitemDAO();
     this.conceptoContableDAO   = new ConceptoContableDAO();
     this.cEmpresaDAO           = new CempresaDAO();
     this.retencionClienteDAO   = new RetencionClienteDAO();
     this.codigoDocumento       = codigoDocumento;
     this.numeroDocumento       = numeroDocumento;
     this.contabilizaDescuentos = contabilizaDescuentos;
 }
Example #7
0
 public ComprobanteXML()
 {
     this.comprobante = new MComprobante();
 }