Example #1
0
        /* ***********************************************************************
         * Implementado por: Billy Arredondo
         * Fecha de implem.: 02-feb-17
         * ***********************************************************************
         * Por cada tipo de docs (factura, boleta)
         * 1. Obtener documentos en listas
         *      1.1 Consultar a tabla flag (podrĂ­a ser TransDocumento) Ășltimo doc
         *      1.2
         * 2. Configurar (mapear) las listas a formatos de CSV
         *      2
         * 3. Imprimir en BD y CSV
         */

        public IFSDocsMostProcess(IBdMostService iBdMostService, IIFSService iIFSService, IMappingService iMappingService, ILogService iLogService)
        {
            steps = new List <IStep>();
            this._IBdMostService  = iBdMostService;
            this._IIFSService     = iIFSService;
            this._IMappingService = iMappingService;
            this._ILogService     = iLogService;
        }
Example #2
0
 public IFSDocsN4Process(IBdConsulta1Service iBdConsultaService, IBdSolicitudServicioService iBdSolicitudServicioService, IN4Service iN4Service,
                         IBillingService iBillingService, IIFSService iIFSService,
                         IMappingService iMappingService, ILogService iLogService)
 {
     steps = new List <IStep>();
     this._IBdConsulta1Service         = iBdConsultaService;
     this._IBdSolicitudServicioService = iBdSolicitudServicioService;
     this._IN4Service      = iN4Service;
     this._IBillingService = iBillingService;
     this._IIFSService     = iIFSService;
     this._IMappingService = iMappingService;
     this._ILogService     = iLogService;
 }