Example #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;
        }
 public MtrBancosController(IMtrBancosService mtrBancosService, IMapper mapper, IUriService uriService, IMtrTipoTransaccionCuentaDestinoService mtrTipoTransaccionCuentaDestinoService)
 {
     _mtrBancosService = mtrBancosService;
     _mapper           = mapper;
     _uriService       = uriService;
     _mtrTipoTransaccionCuentaDestinoService = mtrTipoTransaccionCuentaDestinoService;
 }