コード例 #1
0
 public GenericControlValueService(IUnitOfWork unitOfWork, IGenericControlValueRepository attributeValueRepository) : base(unitOfWork, attributeValueRepository)
 {
     this._unitOfWork = unitOfWork;
     this._attributeValueRepository = attributeValueRepository;
 }
コード例 #2
0
 public GenericControlValueService(IUnitOfWork unitOfWork, IGenericControlValueRepository attributeValueRepository
                                   , ICacheManager cacheManager) : base(unitOfWork, attributeValueRepository)
 {
     _attributeValueRepository = attributeValueRepository;
     _cacheManager             = cacheManager;
 }