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