public WeatherForecastController(
     ILogger <WeatherForecastController> logger,
     ISparePartsIntegrationEventService sparePartsIntegrationEventService)
 {
     this.sparePartsIntegrationEventService = sparePartsIntegrationEventService;
     this.logger = logger;
 }
예제 #2
0
 public CreateVehicleCommandHandler(ISparePartsDbContext sparePartsDbContext, ILogger logger, ISparePartsIntegrationEventService sparePartsIntegrationEventService, IClientSessionHandle clientSessionHandle, VehicleMapper vehicleMapper)
 {
     this.sparePartsDbContext = sparePartsDbContext;
     this.logger = logger;
     this.clientSessionHandle = clientSessionHandle;
     this.sparePartsIntegrationEventService = sparePartsIntegrationEventService;
     this.vehicleMapper = vehicleMapper;
 }
 public CreateTechSpecificationByVehicleIdCommandHandler(
     ISparePartsDbContext sparePartsDbContext,
     ILogger logger,
     ISparePartsIntegrationEventService sparePartsIntegrationEventService,
     IClientSessionHandle clientSessionHandle)
 {
     this.logger = logger;
     this.sparePartsDbContext = sparePartsDbContext;
     this.sparePartsIntegrationEventService = sparePartsIntegrationEventService;
     this.clientSessionHandle = clientSessionHandle;
 }