Example #1
0
 public PlaceQueryService(
     IHttpContextUserService httpContextUserService,
     IPlaceRepository placeRepository
     )
 {
     _httpContextUserService = httpContextUserService;
     _placeRepository        = placeRepository;
 }
Example #2
0
 public PlaceQueryService(
     IPlaceRepository thingRepository,
     IPlaceMappingService thingMappingService,
     IHttpContextUserService httpContextUserService,
     ILogger <PlaceQueryService> logger)
 {
     _placeRepository        = thingRepository;
     _placeMappingService    = thingMappingService;
     _httpContextUserService = httpContextUserService;
     _logger = logger;
 }
Example #3
0
 public ThingQueryService(
     IThingRepository thingRepository,
     IThingMappingService thingMappingService,
     IHttpContextUserService httpContextUserService,
     ILogger <ThingQueryService> logger)
 {
     _thingRepository        = thingRepository;
     _thingMappingService    = thingMappingService;
     _httpContextUserService = httpContextUserService;
     _logger = logger;
 }
Example #4
0
 public ThingCommandService(
     IThingRepository thingRepository,
     IThingMappingService thingMappingService,
     IUserRepository userRepository,
     IHttpContextUserService httpContextUserService,
     IEventBusPublisher eventBusPublisher,
     IUnitOfWork unitOfWork,
     ILogger <ThingQueryService> logger)
 {
     _thingRepository        = thingRepository;
     _thingMappingService    = thingMappingService;
     _userRepository         = userRepository;
     _httpContextUserService = httpContextUserService;
     _eventBusPublisher      = eventBusPublisher;
     _unitOfWork             = unitOfWork;
     _logger = logger;
 }
Example #5
0
 public PlaceCommandService(
     IPlaceRepository placeRepository,
     IPlaceMappingService placeMappingService,
     IUserRepository userRepository,
     IHttpContextUserService httpContextUserService,
     IEventBusPublisher eventBusPublisher,
     IUnitOfWork unitOfWork,
     ILogger <PlaceQueryService> logger)
 {
     _placeRepository        = placeRepository;
     _placeMappingService    = placeMappingService;
     _userRepository         = userRepository;
     _httpContextUserService = httpContextUserService;
     _eventBusPublisher      = eventBusPublisher;
     _unitOfWork             = unitOfWork;
     _logger = logger;
 }