public HandlingEventServiceFacade(IHandlingEventService handlingEventService, ILocationRepository locationRepository)
 {
    _handlingEventService = handlingEventService;
    _locationRepository = locationRepository;
 }
Exemplo n.º 2
0
 public HandlingEventServiceFacade(IHandlingEventService handlingEventService, ILocationRepository locationRepository)
 {
     _handlingEventService = handlingEventService;
     _locationRepository   = locationRepository;
 }
Exemplo n.º 3
0
 public HandlingEventRegistrationAttemptHandler(IHandlingEventService handlingEventService)
 {
     this.handlingEventService = handlingEventService;
 }