public AddChargeStationCommandHandler(IChargeGroupRepository groupRepository, IChargeStationRepository stationRepository, IMapper mapper) { _groupRepository = groupRepository; _stationRepository = stationRepository; _mapper = mapper; }
public UpdateGroupCommandHandler(IGroupRepository groupRepository, IChargeStationRepository chargeStationRepository, IConnectorRepository connectorRepository) { _groupRepository = groupRepository; _chargeStationRepository = chargeStationRepository; _connectorRepository = connectorRepository; }
public CreateOrUpdateConnectorCommandHandler(IConnectorRepository connectorRepository, IChargeStationRepository chargeStationRepository, IGroupRepository groupRepository) { _connectorRepository = connectorRepository; _chargeStationRepository = chargeStationRepository; _groupRepository = groupRepository; }
public AddConnectorCommandHandler(IChargeStationRepository stationRepository, IMapper mapper) { _stationRepository = stationRepository; _mapper = mapper; }
public UpdateChargeStationCommandHandler(IChargeStationRepository chargeStationRepository) { _chargeStationRepository = chargeStationRepository; }
public DeleteChargeStationCommandHandler(IChargeStationRepository stationRepository, IChargeGroupRepository groupRepository) { _stationRepository = stationRepository; _groupRepository = groupRepository; }
public CreateChargeStationCommandHandler(IChargeStationRepository chargeStationRepository, IGroupRepository groupRepository) { _chargeStationRepository = chargeStationRepository; _groupRepository = groupRepository; }
public GetChargeStationQueryHandler(IChargeStationRepository stationRepository, IMapper mapper) { _stationRepository = stationRepository; _mapper = mapper; }
public UpdateChargeStationNameCommandHandler(IChargeStationRepository chargeStationRepository, IMapper mapper) { _chargeStationRepository = chargeStationRepository; _mapper = mapper; }
public GetAllChargeStationsCommandHandler(IChargeStationRepository chargeStationRepository) { _chargeStationRepository = chargeStationRepository; }