コード例 #1
0
 public AddChargeStationCommandHandler(IChargeGroupRepository groupRepository,
                                       IChargeStationRepository stationRepository, IMapper mapper)
 {
     _groupRepository   = groupRepository;
     _stationRepository = stationRepository;
     _mapper            = mapper;
 }
コード例 #2
0
 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;
 }
コード例 #4
0
 public AddConnectorCommandHandler(IChargeStationRepository stationRepository, IMapper mapper)
 {
     _stationRepository = stationRepository;
     _mapper            = mapper;
 }
コード例 #5
0
 public UpdateChargeStationCommandHandler(IChargeStationRepository chargeStationRepository)
 {
     _chargeStationRepository = chargeStationRepository;
 }
コード例 #6
0
 public DeleteChargeStationCommandHandler(IChargeStationRepository stationRepository, IChargeGroupRepository groupRepository)
 {
     _stationRepository = stationRepository;
     _groupRepository   = groupRepository;
 }
 public CreateChargeStationCommandHandler(IChargeStationRepository chargeStationRepository,
                                          IGroupRepository groupRepository)
 {
     _chargeStationRepository = chargeStationRepository;
     _groupRepository         = groupRepository;
 }
コード例 #8
0
 public GetChargeStationQueryHandler(IChargeStationRepository stationRepository, IMapper mapper)
 {
     _stationRepository = stationRepository;
     _mapper            = mapper;
 }
コード例 #9
0
 public UpdateChargeStationNameCommandHandler(IChargeStationRepository chargeStationRepository, IMapper mapper)
 {
     _chargeStationRepository = chargeStationRepository;
     _mapper = mapper;
 }
 public GetAllChargeStationsCommandHandler(IChargeStationRepository chargeStationRepository)
 {
     _chargeStationRepository = chargeStationRepository;
 }