Exemple #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;
        }
Exemple #2
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;
 }