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 AppVariableSearchController(IAppVariableSearchService appVariableSearchService) { _appVariableSearchService = appVariableSearchService; }