public AdminService( ILightRepository lightRepository, ILightPartRepository lightPartRepository, IPartRepository partRepository) { _lightRepository = lightRepository; _lightPartRepository = lightPartRepository; _partRepository = partRepository; }
public LookupService( ILightRepository lightRepository, ILightPartRepository lightPartRepository, IPartRepository partRepository) { _lightRepository = lightRepository; _lightPartRepository = lightPartRepository; _partRepository = partRepository; }
public LightCommandHandler(ILightRepository lightRepository, IRoomRepository roomRepository, IArduinoCommunicationService arduinoCommunicationService) { _lightRepository = lightRepository; _roomRepository = roomRepository; _arduinoCommunicationService = arduinoCommunicationService; }
public LightController(ILightRepository lightRepository, HostingEnvironment hostingEnvironment) { _lightRepository = lightRepository; this.hostingEnvironment = hostingEnvironment; }
public ContaController(ILightRepository lightRepository, IHouseRepository houseRepository) { this.lightRepository = lightRepository; this.houseRepository = houseRepository; }
public ContaController(ILightRepository repository) { this.repository = repository; }
public LightService(ILightRepository lightRepository) { _lightRepository = lightRepository ?? throw new ArgumentNullException(nameof(lightRepository)); }
public LightConfigurator(ILightRepository repository) { _repository = repository; }