示例#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;
 }
示例#2
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;
 }
示例#3
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;
 }