Example #1
0
 public InitializeDataHandler(
     IBusinessRepository businessRepository,
     IBusinessServiceRepository businessServiceRepository,
     IBusinessServiceCategoryRepository businessServiceCategoryRepository,
     IMetaInformationService metaInformationService)
 {
     _businessRepository                = businessRepository;
     _businessServiceRepository         = businessServiceRepository;
     _businessServiceCategoryRepository = businessServiceCategoryRepository;
     _metaInformationService            = metaInformationService;
 }
Example #2
0
 public CreateBusinessServiceHandler(IBusinessServiceRepository repository, IBusinessServiceCategoryRepository categoryRepository, IMapper mapper)
 {
     _repository         = repository;
     _categoryRepository = categoryRepository;
     _mapper             = mapper;
 }
Example #3
0
 public BusinessServiceCategoryNameResolver(IBusinessServiceCategoryRepository businessServiceCategoryRepository)
 {
     _businessServiceCategoryRepository = businessServiceCategoryRepository;
 }