public GreenalyticsController(IPlantRepository plantRepository, IPlantGroupRepository plantGroupRepository, IGardenRepository gardenRepository) { PlantRepository = plantRepository; PlantGroupRepository = plantGroupRepository; GardenRepository = gardenRepository; }
public SchedulerController(IPlantRepository plantRepository, IPlantGroupRepository plantGroupRepository) { PlantRepository = plantRepository; PlantGroupRepository = plantGroupRepository; }
public GardenRepository(IPlantGroupRepository plantGroupRepository) { PlantGroupRepository = plantGroupRepository; }