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;
        }
        public AppTemplateConversionUnitService(IUnitOfWork unitOfWork,
                                                IMapper mapper,
                                                IOptions <PaginationOptions> options,
                                                IHelperService helperService,
                                                IAppUnitsService appUnitsService,
                                                IAppVariablesService appVariablesService,
                                                IAppDetailQuotesConversionUnitService appDetailQuotesConversionUnitService)
        {
            _unitOfWork = unitOfWork;
            _mapper     = mapper;

            _helperService       = helperService;
            _appUnitsService     = appUnitsService;
            _appVariablesService = appVariablesService;
            _appDetailQuotesConversionUnitService = appDetailQuotesConversionUnitService;
            _paginationOptions = options.Value;
        }
Beispiel #3
0
 public AppVariablesController(IAppVariablesService appVariablesService)
 {
     _appVariablesService = appVariablesService;
 }