Esempio n. 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 MtrClientesController(IMtrClienteService mtrClienteService,
                              IMapper mapper,
                              IMtrContactosService mtrContactosService,
                              IMunicipioServices municipioServices)
 {
     _mtrClienteService   = mtrClienteService;
     _mapper              = mapper;
     _mtrContactosService = mtrContactosService;
     _municipioServices   = municipioServices;
 }
Esempio n. 3
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;
 }
Esempio n. 5
0
 public AppGeneralQuotesService(IUnitOfWork unitOfWork,
                                IOptions <PaginationOptions> options,
                                IMapper mapper,
                                IOfdCotizacionService ofdCotizacionService,
                                IMtrClienteService mtrClienteService,
                                IAppDetailQuotesService appDetailQuotesService,
                                ICotizacionService cotizacionService
                                )
 {
     _unitOfWork             = unitOfWork;
     _mapper                 = mapper;
     _ofdCotizacionService   = ofdCotizacionService;
     _mtrClienteService      = mtrClienteService;
     _appDetailQuotesService = appDetailQuotesService;
     _cotizacionService      = cotizacionService;
     _paginationOptions      = options.Value;
 }
Esempio n. 6
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;
 }