예제 #1
0
 public PatchAlertSeverityQueueHandler(
     IServiceBusCommunicationService serviceBusCommunicationService,
     IAlertRepository alertRepository)
 {
     _serviceBusCommunicationService = serviceBusCommunicationService;
     _alertRepository = alertRepository;
 }
 public GetUserDrivingLimitQueueHandler(
     IServiceBusCommunicationService serviceBusCommunicationService,
     IViolationCalculationService violationCalculationService)
 {
     _serviceBusCommunicationService = serviceBusCommunicationService;
     _violationCalculationService    = violationCalculationService;
 }
예제 #3
0
 public PostAlertQueueHandler(
     IServiceBusCommunicationService serviceBusCommunicationService,
     IAlertRepository alertRepository,
     IAutoMapperService autoMapperService)
 {
     _serviceBusCommunicationService = serviceBusCommunicationService;
     _alertRepository   = alertRepository;
     _autoMapperService = autoMapperService;
 }
예제 #4
0
 public GetUserViolationListQueueHandler(
     IServiceBusCommunicationService serviceBusCommunicationService,
     IViolationService violationService,
     IAutoMapperService autoMapperService)
 {
     _serviceBusCommunicationService = serviceBusCommunicationService;
     _violationService  = violationService;
     _autoMapperService = autoMapperService;
 }
 public GetAlertQueueHandler(
     IServiceBusCommunicationService serviceBusCommunicationService,
     IAlertService alertService,
     IAutoMapperService autoMapperService)
 {
     _serviceBusCommunicationService = serviceBusCommunicationService;
     _alertService      = alertService;
     _autoMapperService = autoMapperService;
 }
 public GetTransportationAlertListQueueHandler(
     IServiceBusCommunicationService serviceBusCommunicationService,
     IAlertRepository alertRepository,
     IAutoMapperService autoMapperService)
 {
     _serviceBusCommunicationService = serviceBusCommunicationService;
     _alertRepository   = alertRepository;
     _autoMapperService = autoMapperService;
 }
예제 #7
0
 public GetUserTransportationListQueueHandler(
     ILoggingService loggingService,
     ITransportationService transportationService,
     IServiceBusCommunicationService serviceBusCommunicationService
     )
     : base(loggingService.GetLogAction())
 {
     _transportationService          = transportationService;
     _serviceBusCommunicationService = serviceBusCommunicationService;
 }
예제 #8
0
 public PostUserRolesQueueHandler(
     IRoleRepository roleRepository,
     ILoggingService loggingService,
     IServiceBusCommunicationService serviceBusCommunicationService
     )
     : base(loggingService.GetLogAction())
 {
     _roleRepository = roleRepository;
     _serviceBusCommunicationService = serviceBusCommunicationService;
 }
예제 #9
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;
 }
예제 #11
0
 public CapturedLocationService(
     ITransportationRepository transportationRepository,
     ILoggingService loggingService,
     ITransportationService transportationService,
     IServiceBusCommunicationService serviceBusCommunicationService)
 {
     _transportationRepository       = transportationRepository;
     _loggingService                 = loggingService;
     _transportationService          = transportationService;
     _serviceBusCommunicationService = serviceBusCommunicationService;
 }
 public GetUsersQueueHandler(
     IUserRepository userRepository,
     ILoggingService loggingService,
     IServiceBusCommunicationService serviceBusCommunicationService,
     IAutoMapperService autoMapperService
     )
     : base(loggingService.GetLogAction())
 {
     _userRepository = userRepository;
     _serviceBusCommunicationService = serviceBusCommunicationService;
     _autoMapperService = autoMapperService;
 }