Exemple #1
0
 public CategoryBusiness(
     ICategoryRepository categoryRepository,
     IVideoRepository videoRepository,
     IDictionaryRepository dictionaryRepository,
     IDictionaryItemRepository dictionaryItemRepository,
     IPlateRepository plateRepository
     )
 {
     this._categoryRepository       = categoryRepository;
     this._videoRepository          = videoRepository;
     this._dictionaryRepository     = dictionaryRepository;
     this._dictionaryItemRepository = dictionaryItemRepository;
     this._plateRepository          = plateRepository;
 }
Exemple #2
0
 public BannerVideoBusiness(
     IBannerVideoRepository bannerVideoRepository,
     IVideoRepository videoRepository,
     ICategoryRepository categoryRepository,
     IDictionaryRepository dictionaryRepository,
     IDictionaryItemRepository dictionaryItemRepository,
     IManageRepository manageRepository
     )
 {
     this._bannerVideoRepository    = bannerVideoRepository;
     this._videoRepository          = videoRepository;
     this._categoryRepository       = categoryRepository;
     this._dictionaryRepository     = dictionaryRepository;
     this._dictionaryItemRepository = dictionaryItemRepository;
     this._manageRepository         = manageRepository;
 }
Exemple #3
0
 public DictionaryBusiness(IDictionaryRepository dictionaryRepository, IDictionaryItemRepository dictionaryItemRepository, ICategoryRepository categoryRepository)
 {
     this._dictionaryRepository     = dictionaryRepository;
     this._dictionaryItemRepository = dictionaryItemRepository;
     this._categoryRepository       = categoryRepository;
 }
 public DictionaryItemService(IMapper mapper, IDictionaryItemRepository repository, IExcelHandler excelHandler)
 {
     _mapper       = mapper;
     _repository   = repository;
     _excelHandler = excelHandler;
 }
Exemple #5
0
 public DictionaryItemBusiness(IDictionaryItemRepository dictionaryItemRepository, IDictionaryRepository dictionaryRepository)
 {
     this._dictionaryItemRepository = dictionaryItemRepository;
     this._dictionaryRepository     = dictionaryRepository;
 }
 public DictionaryService(IMapper mapper, IDictionaryRepository dictionaryRepository, IDictionaryItemRepository dictionaryItemRepository)
 {
     _mapper = mapper;
     _dictionaryRepository     = dictionaryRepository;
     _dictionaryItemRepository = dictionaryItemRepository;
 }