예제 #1
0
        public GeneralCobranzaService(IUnitOfWork unitOfWork,
                                      IOptions <PaginationOptions> options,
                                      IMapper mapper,
                                      IMtrClienteService mtrClienteService,
                                      IMtrVendedorService mtrVendedorService,
                                      IMtrBancosService mtrBancosService,
                                      ICobTipoTransaccionService cobTipoTransaccionService,
                                      IMtrTipoMonedaService mtrTipoMonedaService,
                                      ICobEstadoCuentaService cobEstadoCuentaService,
                                      ICobTransaccionesService cobTransaccionesService,
                                      ISapRetencionesService sapRetencionesService,
                                      ICobGrabacionCobranzasService cobGrabacionCobranzasService,
                                      IMtrOficinaService mtrOficinaService,
                                      ICobAdjuntosCobranzaService cobAdjuntosCobranzaService

                                      )
        {
            _unitOfWork                   = unitOfWork;
            _paginationOptions            = options.Value;
            _mapper                       = mapper;
            _mtrClienteService            = mtrClienteService;
            _mtrVendedorService           = mtrVendedorService;
            _mtrBancosService             = mtrBancosService;
            _cobTipoTransaccionService    = cobTipoTransaccionService;
            _mtrTipoMonedaService         = mtrTipoMonedaService;
            _cobEstadoCuentaService       = cobEstadoCuentaService;
            _cobTransaccionesService      = cobTransaccionesService;
            _sapRetencionesService        = sapRetencionesService;
            _cobGrabacionCobranzasService = cobGrabacionCobranzasService;
            _mtrOficinaService            = mtrOficinaService;
            _cobAdjuntosCobranzaService   = cobAdjuntosCobranzaService;
        }
 //Constructor
 public CobEstadoCuentaController(ICobEstadoCuentaService cobEstadoCuentaService,
                                  IMapper mapper,
                                  IUriService uriService,
                                  IOptions <PaginationOptions> options,
                                  IOfdTipoDocumentoService ofdTipoDocumentoService,
                                  IMtrClienteService mtrClienteService,
                                  ISapClient sapClient)
 {
     _cobEstadoCuentaService = cobEstadoCuentaService;
     _mapper            = mapper;
     _uriService        = uriService;
     _mtrClienteService = mtrClienteService;
     _sapClient         = sapClient;
     _paginationOptions = options.Value;
 }
예제 #3
0
 //Constructor
 public CobPagosRetencionesController(ICobPagosRetencionesService cobPagosRetencionesService,
                                      ICobGrabacionCobranzasService cobGrabacionCobranzasService,
                                      ICobTransaccionesService cobTransaccionesService,
                                      IMapper mapper,
                                      IUriService uriService,
                                      IOptions <PaginationOptions> options,
                                      IOfdTipoDocumentoService ofdTipoDocumentoService,
                                      ICobValoresRetencionesService cobValoresRetencionesService,
                                      ICobEstadoCuentaService cobEstadoCuentaService,
                                      ITPaTasaBancoCentralServices tPaTasaBancoCentralServices
                                      )
 {
     _cobPagosRetencionesService   = cobPagosRetencionesService;
     _cobGrabacionCobranzasService = cobGrabacionCobranzasService;
     _cobTransaccionesService      = cobTransaccionesService;
     _mapper     = mapper;
     _uriService = uriService;
     _cobValoresRetencionesService = cobValoresRetencionesService;
     _cobEstadoCuentaService       = cobEstadoCuentaService;
     _tPaTasaBancoCentralServices  = tPaTasaBancoCentralServices;
     _paginationOptions            = options.Value;
 }
예제 #4
0
 //Constructor
 public CobGrabacionCobranzasController(ICobGrabacionCobranzasService cobGrabacionCobranzasService,
                                        IMapper mapper,
                                        IUriService uriService,
                                        IOptions <PaginationOptions> options,
                                        IOfdTipoDocumentoService ofdTipoDocumentoService,
                                        ICobEstadoCuentaService cobEstadoCuentaService,
                                        IMtrClienteService mtrClienteService,
                                        IGeneralCobranzaService generalCobranzaService,
                                        IMtrTipoMonedaService mtrTipoMonedaService,
                                        ICobMatrixMonedaValidaPagoService cobMatrixMonedaValidaPagoService,
                                        IOfdCotizacionService ofdCotizacionService)
 {
     _cobGrabacionCobranzasService = cobGrabacionCobranzasService;
     _mapper                           = mapper;
     _uriService                       = uriService;
     _cobEstadoCuentaService           = cobEstadoCuentaService;
     _mtrClienteService                = mtrClienteService;
     _generalCobranzaService           = generalCobranzaService;
     _mtrTipoMonedaService             = mtrTipoMonedaService;
     _cobMatrixMonedaValidaPagoService = cobMatrixMonedaValidaPagoService;
     _ofdCotizacionService             = ofdCotizacionService;
     _paginationOptions                = options.Value;
 }