コード例 #1
0
 public GetUserTransportationListQueueHandler(
     ILoggingService loggingService,
     ITransportationService transportationService,
     IServiceBusCommunicationService serviceBusCommunicationService
     )
     : base(loggingService.GetLogAction())
 {
     _transportationService          = transportationService;
     _serviceBusCommunicationService = serviceBusCommunicationService;
 }
コード例 #2
0
 public PostUserRolesQueueHandler(
     IRoleRepository roleRepository,
     ILoggingService loggingService,
     IServiceBusCommunicationService serviceBusCommunicationService
     )
     : base(loggingService.GetLogAction())
 {
     _roleRepository = roleRepository;
     _serviceBusCommunicationService = serviceBusCommunicationService;
 }
 public PostCapturedLocationQueueHandler(
     ILoggingService loggingService,
     IAutoMapperService autoMapperService,
     ICapturedLocationService capturedLocationService
     )
     : base(loggingService.GetLogAction())
 {
     _autoMapperService       = autoMapperService;
     _capturedLocationService = capturedLocationService;
 }
コード例 #4
0
 public PatchTransportationQueueHandler(
     ITransportationRepository transportationRepository,
     ILoggingService loggingService,
     IServiceBusCommunicationService serviceBusCommunicationService
     )
     : base(loggingService.GetLogAction())
 {
     _transportationRepository       = transportationRepository;
     _serviceBusCommunicationService = serviceBusCommunicationService;
 }
 public DeleteUserQueueHandler(
     IUserRepository userRepository,
     ILoggingService loggingService,
     IServiceBusCommunicationService serviceBusCommunicationService
     )
     : base(loggingService.GetLogAction())
 {
     _userRepository = userRepository;
     _serviceBusCommunicationService = serviceBusCommunicationService;
 }
 public GetUsersQueueHandler(
     IUserRepository userRepository,
     ILoggingService loggingService,
     IServiceBusCommunicationService serviceBusCommunicationService,
     IAutoMapperService autoMapperService
     )
     : base(loggingService.GetLogAction())
 {
     _userRepository = userRepository;
     _serviceBusCommunicationService = serviceBusCommunicationService;
     _autoMapperService = autoMapperService;
 }