Exemple #1
0
 //Constructor
 public OfdCotizacionController(IOfdCotizacionService ofdCotizacionService,
                                IMapper mapper,
                                IUriService uriService,
                                IOptions <PaginationOptions> options,
                                IOfdTipoDocumentoService ofdTipoDocumentoService,
                                IMtrClienteService mtrClienteService)
 {
     _ofdCotizacionService = ofdCotizacionService;
     _mapper            = mapper;
     _uriService        = uriService;
     _mtrClienteService = mtrClienteService;
     _paginationOptions = options.Value;
 }
 //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;
 }
Exemple #3
0
 //Constructor
 public CobAdjuntosCobranzaController(ICobAdjuntosCobranzaService cobAdjuntosCobranzaService,
                                      IGeneralCobranzaService generalCobranzaService,
                                      IMapper mapper,
                                      IUriService uriService,
                                      IOptions <PaginationOptions> options,
                                      IOfdTipoDocumentoService ofdTipoDocumentoService,
                                      ILogger <CobAdjuntosCobranzaController> logger,
                                      IAppProductsService appProductsService)
 {
     _cobAdjuntosCobranzaService = cobAdjuntosCobranzaService;
     _generalCobranzaService     = generalCobranzaService;
     _mapper     = mapper;
     _uriService = uriService;
     _ofdTipoDocumentoService = ofdTipoDocumentoService;
     _logger             = logger;
     _appProductsService = appProductsService;
     _paginationOptions  = options.Value;
 }
Exemple #4
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;
 }
Exemple #5
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;
 }
 public OfdTipoDocumentoController(IOfdTipoDocumentoService ofdTipoDocumentoService, IMapper mapper, IUriService uriService)
 {
     _ofdTipoDocumentoService = ofdTipoDocumentoService;
     _mapper     = mapper;
     _uriService = uriService;
 }