public WarehousesController(IFlowerServiceRepository flowerServiceRepository)
 {
     _flowerServiceRepository = flowerServiceRepository;
 }
Example #2
0
 public FlowersController(IFlowerServiceRepository flowerServiceRepository)
 {
     _flowerServiceRepository = flowerServiceRepository;
 }
Example #3
0
 public SuppliesController(IFlowerServiceRepository flowerServiceRepository)
 {
     _flowerServiceRepository = flowerServiceRepository;
 }
 public PlantationsController(IFlowerServiceRepository flowerServiceRepository)
 {
     _flowerServiceRepository = flowerServiceRepository;
 }