public AppDetailQuotesConversionUnitService(IUnitOfWork unitOfWork,
                                             IMapper mapper,
                                             IOptions <PaginationOptions> options,
                                             IAppProductsService appProductsService,
                                             IHelperService helperService /*,
                                                                           * IAppDetailQuotesService appDetailQuotesService*/)
 {
     _unitOfWork         = unitOfWork;
     _mapper             = mapper;
     _appProductsService = appProductsService;
     _helperService      = helperService;
     //_appDetailQuotesService = appDetailQuotesService;
     _paginationOptions = options.Value;
 }
        public AppRecipesServices(IUnitOfWork unitOfWork, IMapper mapper, IOptions <PaginationOptions> options,
                                  IAppProductsService appProductsService,
                                  IHelperService helperService,
                                  IAppVariablesService appVariablesService,

                                  IAppVariableSearchService appVariableSearchService)
        {
            _unitOfWork          = unitOfWork;
            _mapper              = mapper;
            _appProductsService  = appProductsService;
            _helperService       = helperService;
            _appVariablesService = appVariablesService;

            _appVariableSearchService = appVariableSearchService;
            _paginationOptions        = options.Value;
        }
Esempio n. 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;
 }
Esempio n. 4
0
 public AppProductsController(IAppProductsService appProductsService)
 {
     _appProductsService = appProductsService;
 }