public GenericControlValueService(IUnitOfWork unitOfWork, IGenericControlValueRepository attributeValueRepository) : base(unitOfWork, attributeValueRepository) { this._unitOfWork = unitOfWork; this._attributeValueRepository = attributeValueRepository; }
public GenericControlValueService(IUnitOfWork unitOfWork, IGenericControlValueRepository attributeValueRepository , ICacheManager cacheManager) : base(unitOfWork, attributeValueRepository) { _attributeValueRepository = attributeValueRepository; _cacheManager = cacheManager; }