public GetCategoryByIdQueryHandler(IIndustryRepository industryRepository, ICompanyIndustryRepository companyIndustryRepository, ICompanyRepository repository, IPlaceRepository placeRepository, IMapper mapper)
 {
     _repository                = repository;
     _mapper                    = mapper;
     _placeRepository           = placeRepository;
     _companyIndustryRepository = companyIndustryRepository;
     _industryRepository        = industryRepository;
 }
Example #2
0
 public GetCategoryByIdQueryHandler(IIndustryRepository industryRepository, ICompanyIndustryRepository companyIndustryRepository, ICompanyRepository repository, IAuthenticatedUserService authenticatedUser, IPlaceRepository placeRepository, IMapper mapper)
 {
     _repository                = repository;
     _mapper                    = mapper;
     _placeRepository           = placeRepository;
     _authenticatedUser         = authenticatedUser;
     _companyIndustryRepository = companyIndustryRepository;
     _industryRepository        = industryRepository;
 }
Example #3
0
 public CreateCommandHandler(ICompanyIndustryRepository companyIndustryRepository, ICompanyRepository repository, IPlaceRepository placeRepository, IUnitOfWork unitOfWork, IMapper mapper, IAuthenticatedUserService authenticatedUser)
 {
     _repository                = repository;
     _unitOfWork                = unitOfWork;
     _mapper                    = mapper;
     _authenticatedUser         = authenticatedUser;
     _placeRepository           = placeRepository;
     _companyIndustryRepository = companyIndustryRepository;
 }