コード例 #1
0
 public GreenalyticsController(IPlantRepository plantRepository,
                               IPlantGroupRepository plantGroupRepository,
                               IGardenRepository gardenRepository)
 {
     PlantRepository      = plantRepository;
     PlantGroupRepository = plantGroupRepository;
     GardenRepository     = gardenRepository;
 }
コード例 #2
0
 public SchedulerController(IPlantRepository plantRepository,
                            IPlantGroupRepository plantGroupRepository)
 {
     PlantRepository      = plantRepository;
     PlantGroupRepository = plantGroupRepository;
 }
コード例 #3
0
 public GardenRepository(IPlantGroupRepository plantGroupRepository)
 {
     PlantGroupRepository = plantGroupRepository;
 }